layer | R Documentation |
A layer is a combination of data, stat and geom with a potential position
adjustment. Usually layers are created using geom_*
or stat_*
calls but it can also be created directly using this function.
layer(
geom = NULL,
stat = NULL,
data = NULL,
mapping = NULL,
position = NULL,
params = list(),
inherit.aes = TRUE,
check.aes = TRUE,
check.param = TRUE,
show.legend = NA,
key_glyph = NULL,
layer_class = Layer
)
geom |
The geometric object to use to display the data for this layer.
When using a
|
stat |
The statistical transformation to use on the data for this layer.
When using a
|
data |
The data to be displayed in this layer. There are three options: If A A |
mapping |
Set of aesthetic mappings created by |
position |
A position adjustment to use on the data for this layer. This
can be used in various ways, including to prevent overplotting and
improving the display. The
|
params |
Additional parameters to the |
inherit.aes |
If |
check.aes , check.param |
If |
show.legend |
logical. Should this layer be included in the legends?
|
key_glyph |
A legend key drawing function or a string providing the
function name minus the |
layer_class |
The type of layer object to be constructed. This is intended for ggplot2 internal use only. |
The plot building chapter and geoms chapter of the online ggplot2 book.
Other layer documentation:
layer_geoms
,
layer_positions
,
layer_stats
# geom calls are just a short cut for layer
ggplot(mpg, aes(displ, hwy)) + geom_point()
# shortcut for
ggplot(mpg, aes(displ, hwy)) +
layer(
geom = "point", stat = "identity", position = "identity",
params = list(na.rm = FALSE)
)
# use a function as data to plot a subset of global data
ggplot(mpg, aes(displ, hwy)) +
layer(
geom = "point", stat = "identity", position = "identity",
data = head, params = list(na.rm = FALSE)
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.