The R Project SVN R

Rev

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

Rev 32436 Rev 33335
Line 92... Line 92...
92
 
92
 
93
## 'lwd' should transfer to plot symbols
93
## 'lwd' should transfer to plot symbols
94
legend(1,10, c("A","bcd"), lwd = 2:3, pch= 21:22, pt.bg="skyblue",
94
legend(1,10, c("A","bcd"), lwd = 2:3, pch= 21:22, pt.bg="skyblue",
95
       col = 2:3, bg = "thistle")
95
       col = 2:3, bg = "thistle")
96
## (gave an error for 2 days in "2.0.0 unstable")
96
## (gave an error for 2 days in "2.0.0 unstable")
-
 
97
 
-
 
98
x <- 2^seq(1,1001, length=20)
-
 
99
plot(x, x^0.9, type="l", log="xy")
-
 
100
## gave error 'Infinite axis extents [GEPretty(1.87013e-12,inf,5)]' for R 2.0.1
-
 
101
plot(x^0.9, 1e-20/x, type="l", log="xy") # still warning
-
 
102
## and ugly labels because  10^-323 |==> 9.881313e-324 numerically
-
 
103
## gave error 'log - axis(), 'at' creation, _LARGE_ range: ne = -429496728 <= 0 ...
-
 
104