ggplot_build | R Documentation |
ggplot_build()
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.
ggplot_build(plot)
layer_data(plot = last_plot(), i = 1L)
layer_scales(plot = last_plot(), i = 1L, j = 1L)
layer_grob(plot = last_plot(), i = 1L)
plot |
ggplot object |
i |
An integer. In |
j |
An integer. In |
layer_data()
, layer_grob()
, and layer_scales()
are helper
functions that return the data, grob, or scales associated with a given
layer. These are useful for tests.
print.ggplot()
and benchplot()
for
functions that contain the complete set of steps for generating
a ggplot2 plot.
The build step section of the online ggplot2 book.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.