[R] Graphing output

2018-10-09 Thread Steven Yen
Is it possible to release the file destination after sending it to a pdf file? Below, line 3 send the graph to a pdf file. I like to release the devise so that I can see result produced by line for on the console (screen). Thanks. x<-1:10 pdf("test1.pdf") # pdf {grDevices} boxplot(x) # This goes

Re: [R] Graphing output

2018-10-09 Thread William Dunlap via R-help
Look at dev.off() or possibly dev.set(). Bill Dunlap TIBCO Software wdunlap tibco.com On Tue, Oct 9, 2018 at 9:17 AM, Steven Yen wrote: > Is it possible to release the file destination after sending it to a pdf > file? > Below, line 3 send the graph to a pdf file. > I like to release the devise