Skip to content
Prev 244301 / 398506 Next

Dont print plot on screen

On 08/12/2010 8:14 AM, Joel wrote:
Yes, that's the normal behaviour when plotting to a file.  Just open a 
device in the output format you want.  For example,

pdf(file="example.pdf")
plot(rnorm(100))
dev.off()


Duncan Murdoch