powered by
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()
<AsIs>
ggplot_build()
.expose_data()
.ignore_data(data).expose_data(data)
.expose_data(data)
A modified list of <data.frame>s
<data.frame>s
A list of <data.frame>s.
<data.frame>
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)
Run the code above in your browser using DataLab