blob: 170e077e6ca9552516445b3609dfb78b074eb043 (
plain)
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
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/saveplot.R
\name{saveplot}
\alias{saveplot}
\title{Save a ggplot object}
\usage{
saveplot(p, filename, units = "in", width = 10, height = 10, dpi = 600)
}
\arguments{
\item{p}{ggplot object you want to save}
\item{filename}{The name of the file you want to export to}
\item{units}{The units for dimensions of the plot (default inches)}
\item{width}{Width of the plot in units (default 10)}
\item{height}{Height of the plot in units (default 10)}
\item{dpi}{Dots per inch (detault 300)}
}
\value{
No return value
}
\description{
Standard method for saving ggplot objects for best
quality for the desired use case
}
\examples{
df <- data.frame(x = rnorm(100))
p <- ggplot2::ggplot(data = df, ggplot2::aes(x = x)) + ggplot2::geom_histogram()
saveplot(p, filename = 'plot.png')
}
|