1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
% Generated by roxygen2 (4.0.1): do not edit by hand
\name{ggplot_build}
\alias{ggplot_build}
\title{Build ggplot for rendering.}
\usage{
ggplot_build(plot)
}
\arguments{
\item{plot}{ggplot object}
}
\description{
This function takes the plot object, and performs all steps necessary to
produce an object that can be rendered. This function outputs two pieces:
a list of data frames (one for each layer), and a panel object, which
contain all information about axis limits, breaks etc.
}
\seealso{
\code{\link{print.ggplot}} and \code{link{benchplot}} for
for functions that contain the complete set of steps for generating
a ggplot2 plot.
}
\keyword{internal}
|