ignoring_data | R Documentation |
The .ignore_data()
function is used to hide <AsIs>
columns during
scale interactions in ggplot_build()
. The .expose_data()
function is
used to restore hidden columns.
.ignore_data(data)
.expose_data(data)
data |
A list of |
A modified list of <data.frame>s
data <- list(
data.frame(x = 1:3, y = I(1:3)),
data.frame(w = I(1:3), z = 1:3)
)
ignored <- .ignore_data(data)
str(ignored)
.expose_data(ignored)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.