Saves a ggplot2 plot to a file in PNG, PDF, or JPG format.
Usage
save_plot(
plot,
filename = "plot",
format = c("png", "pdf", "jpg"),
width = 8,
height = 6,
dpi = 300
)Arguments
- plot
A
ggplot2object.- filename
Name of the file to save, with or without extension. If no directory is supplied, the file is saved in
tempdir().- format
Output format. One of
"png","pdf", or"jpg".- width
Width of the saved plot in inches.
- height
Height of the saved plot in inches.
- dpi
Resolution of the plot in dots per inch.
Examples
p <- ggplot2::ggplot(mtcars, ggplot2::aes(wt, mpg)) +
ggplot2::geom_point()
save_plot(p, filename = tempfile("plot"), format = "png")
#> Plot saved at: /tmp/RtmplwT6ed/plot19c6d8552a3.png