Skip to content

Graphics file to disk

4 messages · Guy Forrester, Francisco J. Zagmutt, Mike Prager +1 more

#
Hi Guy

Try savePlot("MyPlot", "bmp").

Cheers

Francisco

PS: Hang in there! In the long run the effort to move from S-Plus to R is 
definitively worthy!
#
If you want to write directly to file,

?Devices

will get you more information



Guy Forrester wrote on 5/11/2005 7:08 PM:

  
    
#
for example (works also with png and jpg)

bmp("mypic.bmp");
plot(...);
dev.off();

hih