Usage
ggsave(filename = NULL, plot = ggplot2::last_plot(),
device = default_device(filename), path = NULL, scale = 1,
width = graphics::par("din")[1], height = graphics::par("din")[2],
units = c("in", "cm", "mm"), dpi = 300, limitsize = TRUE, ...)
Arguments
plot
Plot to save, defaults to last plot displayed.
device
Device to use, automatically extract from file name extension.
path
Path to save plot to (if you just want to set path and not
filename).
width
Width (defaults to the width of current plotting window).
height
Height (defaults to the height of current plotting window).
units
Units for width and height when either one is explicitly specified (in, cm, or mm).
dpi
DPI to use for raster graphics.
limitsize
When TRUE
(the default), ggsave
will not
save images larger than 50x50 inches, to prevent the common error of
specifying dimensions in pixels.
...
Other arguments to be handed to the plot device.