The R Project SVN R

Rev

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

Rev 30453 Rev 30819
Line 85... Line 85...
85
## ylab didn't work till 1.8.0
85
## ylab didn't work till 1.8.0
86
 
86
 
87
plot(1:10, pch = NA) # gave error till 1.9.0
87
plot(1:10, pch = NA) # gave error till 1.9.0
88
points(1:3, pch=c("o",NA,"x"))# used "N"
88
points(1:3, pch=c("o",NA,"x"))# used "N"
89
try(points(4, pch=c(NA,FALSE)))# still give an error
89
try(points(4, pch=c(NA,FALSE)))# still give an error
-
 
90
 
-
 
91
## 'lwd' should transfer to plot symbols
-
 
92
legend(1,10, c("A","bcd"), lwd = 2:3, pch= 21:22, pt.bg="skyblue",
-
 
93
       col = 2:3, bg = "thistle")
-
 
94
## (gave an error for 2 days in "2.0.0 unstable")