The R Project SVN R

Rev

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

Rev 45033 Rev 45449
Line 1... Line 1...
1
 
1
 
2
R version 2.8.0 Under development (unstable) (2008-04-01 r45026)
2
R version 2.8.0 Under development (unstable) (2008-04-22 r45447)
3
Copyright (C) 2008 The R Foundation for Statistical Computing
3
Copyright (C) 2008 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 162... Line 162...
162
> curve(5*exp(-x), 0.1, 100, n = 3, log="x", ylab="", axes=FALSE)
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)
163
> curve(5*exp(-x), add=TRUE, n = 3, col=2,lwd=3)
164
> ## should fully overplot; wrong default xlim in 2.6.1
164
> ## should fully overplot; wrong default xlim in 2.6.1
165
> ## (and *slightly* wrong up to 2.6.0)
165
> ## (and *slightly* wrong up to 2.6.0)
166
> 
166
> 
-
 
167
> ## Axis() calls via plot()  {[xy]axt to keep *.ps small}
-
 
168
> x <- as.Date("2008-04-22 09:45") + (i <- c(0,4))
-
 
169
> plot(x,    xaxt="n")# not ok in 2.6.2, nor 2.7.0
-
 
170
> plot(x, i, yaxt="n")# ok in 2.6.2  and 2.7.0
-
 
171
> plot(i, x, xaxt="n")# ok in 2.6.2 and not in 2.7.0
-
 
172
>