The R Project SVN R

Rev

Rev 35127 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 35127 Rev 36113
Line 1... Line 1...
1
 
1
 
2
R : Copyright 2005, The R Foundation for Statistical Computing
2
R : Copyright 2005, The R Foundation for Statistical Computing
3
Version 2.2.0 Under development (unstable) (2005-08-03 r35123)
3
Version 2.3.0 Under development (unstable) (2005-10-31 r36106)
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.
8
Type 'license()' or 'licence()' for distribution details.
8
Type 'license()' or 'licence()' for distribution details.
Line 111... Line 111...
111
> ## ylab didn't work till 1.8.0
111
> ## ylab didn't work till 1.8.0
112
> 
112
> 
113
> plot(1:10, pch = NA) # gave error till 1.9.0
113
> plot(1:10, pch = NA) # gave error till 1.9.0
114
> points(1:3, pch=c("o",NA,"x"))# used "N"
114
> points(1:3, pch=c("o",NA,"x"))# used "N"
115
> try(points(4, pch=c(NA,FALSE)))# still give an error
115
> try(points(4, pch=c(NA,FALSE)))# still give an error
116
Error in plot.xy(xy.coords(x, y), type = type, pch = pch, col = col, bg = bg,  : 
116
Error in plot.xy(xy.coords(x, y), type = type, ...) : 
117
	only NA allowed in logical plotting symbol
117
	only NA allowed in logical plotting symbol
118
> 
118
> 
119
> ## 'lwd' should transfer to plot symbols
119
> ## 'lwd' should transfer to plot symbols
120
> legend(1,10, c("A","bcd"), lwd = 2:3, pch= 21:22, pt.bg="skyblue",
120
> legend(1,10, c("A","bcd"), lwd = 2:3, pch= 21:22, pt.bg="skyblue",
121
+        col = 2:3, bg = "thistle")
121
+        col = 2:3, bg = "thistle")