The R Project SVN R

Rev

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

Rev 33335 Rev 33361
Line 96... Line 96...
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
 
97
 
98
x <- 2^seq(1,1001, length=20)
98
x <- 2^seq(1,1001, length=20)
99
plot(x, x^0.9, type="l", log="xy")
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
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
 
-