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 1... Line 1...
1
 
1
 
2
R version 2.7.0 Under development (unstable) (2007-11-23 r43524)
2
R version 2.7.0 Under development (unstable) (2007-12-09 r43632)
3
Copyright (C) 2007 The R Foundation for Statistical Computing
3
Copyright (C) 2007 The R Foundation for Statistical Computing
4
ISBN 3-900051-07-0
4
ISBN 3-900051-07-0
5
 
5
 
6
R is free software and comes with ABSOLUTELY NO WARRANTY.
6
R is free software and comes with ABSOLUTELY NO WARRANTY.
7
You are welcome to redistribute it under certain conditions.
7
You are welcome to redistribute it under certain conditions.
Line 156... Line 156...
156
> par(op)
156
> par(op)
157
> 
157
> 
158
> ## plot.ts(x, y) could get the labels wrong in R <= 2.6.0:
158
> ## plot.ts(x, y) could get the labels wrong in R <= 2.6.0:
159
> x <- ts(1:5);x1 <- lag(x, 2); plot(x1, x, axes=FALSE)
159
> x <- ts(1:5);x1 <- lag(x, 2); plot(x1, x, axes=FALSE)
160
> 
160
> 
-
 
161
> # adding a curve in log scale :
-
 
162
> curve(5*exp(-x), 0.1, 100, n = 3, log="x", ylab="", axes=FALSE)
-
 
163
> curve(5*exp(-x), add=TRUE, n = 3, col=2,lwd=3)
-
 
164
> ## should fully overplot; wrong default xlim in 2.6.1
-
 
165
> ## (and *slightly* wrong up to 2.6.0)
-
 
166
>