1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/save.R
\name{ggsave2}
\alias{ggsave2}
\title{Cowplot reimplementation of \code{ggsave()}.}
\usage{
ggsave2(
filename,
plot = ggplot2::last_plot(),
device = NULL,
path = NULL,
scale = 1,
width = NA,
height = NA,
units = c("in", "cm", "mm"),
dpi = 300,
limitsize = TRUE,
...
)
}
\arguments{
\item{filename}{Filename of the plot.}
\item{plot}{Plot to save, defaults to last plot displayed.}
\item{device}{Device to use, automatically extract from file name extension.}
\item{path}{Path to save plot to (if you just want to set \code{path} and not
\code{filename}).}
\item{scale}{Scaling factor.}
\item{width}{Width (defaults to the width of current plotting window).}
\item{height}{Height (defaults to the height of current plotting window).}
\item{units}{Units for width and height when either one is explicitly specified (in, cm, or mm).}
\item{dpi}{DPI to use for raster graphics.}
\item{limitsize}{When \code{TRUE} (the default), \code{ggsave2()} will not
save images larger than 50x50 inches, to prevent the common error of
specifying dimensions in pixels.}
\item{...}{Other arguments to be handed to the plot device.}
}
\description{
This function behaves just like \code{\link[=ggsave]{ggsave()}} from ggplot2. The main difference is
that by default it doesn't use the Dingbats font for pdf output. The Dingbats font
causes problems with some pdf readers.
}
|