I plot a simple linear regression using R. I would like to save that image as png or jpeg, is it possible to do it automatically? (via code)

link|improve this question
feedback

4 Answers

up vote 7 down vote accepted

To save a plot, you need to do the following:

  1. Open a device, using png(), bmp(), pdf() or similar
  2. Plot your model
  3. Close the device using dev.off

Some example code for saving the plot to a png file:

fit <- lm(some ~ model)

png(filename="your/file/location/name.png")
plot(fit)
dev.off()

This is described in the (combined) help page for the graphical formats ?png, ?bmp, ?jpg and ?tiff as well as in the separate help page for ?pdf.


Note that if your plot is made by either lattice or ggplot2 you have to explicitly print the plot. See this answer that explains this in more detail and also links to the R FAQ: ggplot's qplot does not execute on sourcing

link|improve this answer
feedback

Like this

png('filename.png')
# make plot
dev.off()

or this

# sometimes plots do better in vector graphics
svg('filename.svg')
# make plot
dev.off()

or this

pdf('filename.pdf')
# make plot
dev.off()

And probably others too. They're all listed together in the help pages.

link|improve this answer
feedback

If you use R Studio http://rstudio.org/ there is a special menu to save you plot as any format you like and at any resolution you choose

link|improve this answer
This also exists in the R GUI on Windows, at least. – richiemorrisroe Sep 1 '11 at 12:30
feedback

If you want to keep seeing the plot in R, another option is to use dev.copy:

X11 ()
plot (x,y)

dev.copy(jpeg,filename="plot.jpg");
dev.off ();

If you reach a clutter of too many plot windows in R, use graphics.off() to close all of the plot windows.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.