R-alpha: Bug in postscript command with boxplots.
In R-0.50-a3, problems occurs when creating a postscript file of a boxplot. Just using the boxplot command works fine (on the screen).
x11() boxplot(x)
But, once the postscript command is used to capture a boxplot, the horizontal lines are missing in the file.
postscript("new.ps",landscape=F)
boxplot(x)
dev.off()
On the other hand, using the save.plot command creates a postscript file of a boxplots which is fine.
x11()
boxplot(x)
save.plot("new.ps")
Patrick. =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= r-devel mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html Send "info", "help", or "[un]subscribe" (in the "body", not the subject !) To: r-devel-request@stat.math.ethz.ch =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=