The R Project SVN R

Rev

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

Rev 43526 Rev 43636
Line 127... Line 127...
127
plot(gamma, yla = expression(Gamma(x)), n=11, yaxt="n")
127
plot(gamma, yla = expression(Gamma(x)), n=11, yaxt="n")
128
par(op)
128
par(op)
129
 
129
 
130
## plot.ts(x, y) could get the labels wrong in R <= 2.6.0:
130
## plot.ts(x, y) could get the labels wrong in R <= 2.6.0:
131
x <- ts(1:5);x1 <- lag(x, 2); plot(x1, x, axes=FALSE)
131
x <- ts(1:5);x1 <- lag(x, 2); plot(x1, x, axes=FALSE)
-
 
132
 
-
 
133
# adding a curve in log scale :
-
 
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)
-
 
136
## should fully overplot; wrong default xlim in 2.6.1
-
 
137
## (and *slightly* wrong up to 2.6.0)