The R Project SVN R

Rev

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

Rev 37885 Rev 39725
Line 99... Line 99...
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
 
101
 
102
plot(as.Date("2001/1/1") + 12*(1:9), 1:9)
102
plot(as.Date("2001/1/1") + 12*(1:9), 1:9)
103
## used bad 'xlab/ylab' in some versions of R 2.2.0(unstable)
103
## used bad 'xlab/ylab' in some versions of R 2.2.0(unstable)
-
 
104
 
-
 
105
## dotchart() did not restore all par()s till R 2.4.0
-
 
106
Opar <- par(no.readonly=TRUE) ; dotchart(1:4, cex= 0.7)
-
 
107
Npar <- par(no.readonly=TRUE)
-
 
108
stopifnot(identical(Opar, Npar))