The R Project SVN R

Rev

Rev 12256 | Rev 13792 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 12256 Rev 12976
Line 1... Line 1...
1
 
1
 
2
R : Copyright 2001, The R Development Core Team
2
R : Copyright 2001, The R Development Core Team
3
Version 1.2.0 Patched (2001-01-14)
3
Version 1.2.1 Patched (2001-02-18)
4
 
4
 
5
R is free software and comes with ABSOLUTELY NO WARRANTY.
5
R is free software and comes with ABSOLUTELY NO WARRANTY.
6
You are welcome to redistribute it under certain conditions.
6
You are welcome to redistribute it under certain conditions.
7
Type `license()' or `licence()' for distribution details.
7
Type `license()' or `licence()' for distribution details.
8
 
8
 
Line 125... Line 125...
125
+     points(x, y, pch=i)
125
+     points(x, y, pch=i)
126
+ }
126
+ }
127
> 
127
> 
128
> par(pty="m")
128
> par(pty="m")
129
> 
129
> 
-
 
130
> ## PR 816 (label sizes in dotplot)
-
 
131
> 
-
 
132
> ### Prior to 1.2.2, the label sizes were unaffected by cex.
-
 
133
> 
-
 
134
> data(VADeaths)
-
 
135
> dotplot(VADeaths, main = "Death Rates in Virginia - 1940", cex = 0.5)
-
 
136
> dotplot(VADeaths, main = "Death Rates in Virginia - 1940", cex = 1.5)
-
 
137
>