Description Usage Arguments Examples
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.
1 2 3 4 |
geom |
The geometric object to use display the data |
stat |
The statistical transformation to use on the data for this layer, as a string. |
data |
The data to be displayed in this layer. There are three options: If A A |
mapping |
Set of aesthetic mappings created by |
position |
Position adjustment, either as a string, or the result of a call to a position adjustment function. |
params |
Additional parameters to the |
inherit.aes |
If |
check.aes, check.param |
If |
show.legend |
logical. Should this layer be included in the legends?
|
layer_class |
The type of layer object to be constructued. This allows the creation of custom layers. Can usually be left at its default. |
1 2 3 4 5 6 7 8 9 10 11 12 13 | # 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.