Generate a list of ggplots from a list of data.frames
Usage
gglist(
data = NULL,
mapping = ggplot2::aes(),
...,
environment = parent.frame()
)
Examples
mydata <-
list(
data.frame(x = 1:3, y = 3:1),
data.frame(x = 4:7, y = 7:4)
)
gglist(mydata, ggplot2::aes(x = x, y = y)) +
ggplot2::geom_point()