uses_data | R Documentation |
uses_data
checks whether the data set used by a plot or layer matches
the data set provided.
uses_data(p, data, local_only = FALSE)
p |
A ggplot object or a layer extracted from a ggplot object with
|
data |
A data frame |
local_only |
|
When passed a ggplot object (i.e. a plot), uses_data
will check only
the data that has been set globally with ggplot
.
When passed a single layer from a plot, the behavior of uses_data
will
depend on the local_only
argument passed to ...
. If
local_only = TRUE
, uses_data
will check only the data set, if
any, that was defined locally in the function that created the layer. If
local_only = FALSE
, uses_data
will check the data used by the
layer, whether or not that data was defined globally in
ggplot
or locally.
A data frame.
Other functions for checking data:
get_data()
,
ith_data_is()
,
ith_data()
require(ggplot2)
d2 <- head(mpg)
p <- ggplot(data = mpg, mapping = aes(x = displ, y = hwy)) +
geom_point(data = d2, color = "red") +
geom_point()
uses_data(p, mpg)
uses_data(get_geom_layer(p, i = 1), data = head(mpg))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.