The R Project SVN R

Rev

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

Rev 44151 Rev 45449
Line 133... Line 133...
133
# adding a curve in log scale :
133
# adding a curve in log scale :
134
curve(5*exp(-x), 0.1, 100, n = 3, log="x", ylab="", axes=FALSE)
134
curve(5*exp(-x), 0.1, 100, n = 3, log="x", ylab="", axes=FALSE)
135
curve(5*exp(-x), add=TRUE, n = 3, col=2,lwd=3)
135
curve(5*exp(-x), add=TRUE, n = 3, col=2,lwd=3)
136
## should fully overplot; wrong default xlim in 2.6.1
136
## should fully overplot; wrong default xlim in 2.6.1
137
## (and *slightly* wrong up to 2.6.0)
137
## (and *slightly* wrong up to 2.6.0)
-
 
138
 
-
 
139
## Axis() calls via plot()  {[xy]axt to keep *.ps small}
-
 
140
x <- as.Date("2008-04-22 09:45") + (i <- c(0,4))
-
 
141
plot(x,    xaxt="n")# not ok in 2.6.2, nor 2.7.0
-
 
142
plot(x, i, yaxt="n")# ok in 2.6.2  and 2.7.0
-
 
143
plot(i, x, xaxt="n")# ok in 2.6.2 and not in 2.7.0