powered by
Generate a list of ggplots from a list of data.frames
gglist( data = NULL, mapping = ggplot2::aes(), ..., environment = parent.frame() )
A list of ggplot2 objects
A list of data.frames (or similar objects)
Default list of aesthetic mappings to use for plot. If not specified, must be supplied in each layer added to the plot.
Other arguments passed on to methods. Not currently used.
Used prior to tidy evaluation.
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()
Run the code above in your browser using DataLab