The R Project SVN R

Rev

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

Rev 12976 Rev 13792
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.1 Patched (2001-02-18)
3
Version 1.2.2 Patched (2001-04-07)
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 70... Line 70...
70
j.f = 1e-11 ;  rel.range = 553.9 * EPS
70
j.f = 1e-11 ;  rel.range = 553.9 * EPS
71
par("usr")[3:4]:     3.142     3.142
71
par("usr")[3:4]:     3.142     3.142
72
par("yaxp") :        3.142     3.142         3
72
par("yaxp") :        3.142     3.142         3
73
 
73
 
74
j.f = 1e-12 ;  rel.range = 56.02 * EPS
74
j.f = 1e-12 ;  rel.range = 56.02 * EPS
75
Warning: relative range of values = 42.6535 * EPS, is small (axis 2).
75
Warning: relative range of values = 43.2901 * EPS, is small (axis 2).
76
par("usr")[3:4]:     3.142     3.142
76
par("usr")[3:4]:     3.142     3.142
77
par("yaxp") :        3.142     3.142         1
77
par("yaxp") :        3.142     3.142         1
78
 
78
 
79
j.f = 7e-13 ;  rel.range = 39.47 * EPS
79
j.f = 7e-13 ;  rel.range = 39.47 * EPS
80
Warning: relative range of values = 35.6507 * EPS, is small (axis 2).
80
Warning: relative range of values = 35.6507 * EPS, is small (axis 2).
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)
130
> ## PR 816 (label sizes in dotchart)
131
> 
131
> 
132
> ### Prior to 1.2.2, the label sizes were unaffected by cex.
132
> ### Prior to 1.2.2, the label sizes were unaffected by cex.
133
> 
133
> 
134
> data(VADeaths)
134
> data(VADeaths)
135
> dotplot(VADeaths, main = "Death Rates in Virginia - 1940", cex = 0.5)
135
> dotchart(VADeaths, main = "Death Rates in Virginia - 1940", cex = 0.5)
136
> dotplot(VADeaths, main = "Death Rates in Virginia - 1940", cex = 1.5)
136
> dotchart(VADeaths, main = "Death Rates in Virginia - 1940", cex = 1.5)
137
> 
137
>