ggloop
Create ggplot2 plots in a loop.
Overview
ggloop allows the user to use both dplyr-like and ggplot2-like syntax to either create multiple ggplot2 plots or create the list of aesthetics used to make such plots. This has the potential to save the users on the amount of code within their projects or sessions.
Installation
Please use devtools::install_github("seasmith/ggloop")
to install the package.
Where can I learn about how to use ggloop
?
You can try the Intro vignette (vignette("intro", "ggloop")
). You can also read the very brief overview of the functions and example below.
The functions
ggloop
has three exported functions:
ggloop(data, mappings = aes_loop(), remap_xy = TRUE, remap_dots = FALSE, ..., environment = parent.frame() )
= Meant to mimickggplot()
's arguments with additional remap arguments to control the remapping behavior of the mappings. There are three possible returned values:- A single ggplot object = Created by
x
,y
, and...
arguments of length one or less. - A list of ggplot objects = Created when there is no
...
argument inaes_loop()
. - A nest list (a list of a list) of ggplot objects = Created when a
...
argument is supplied....
names sit on the top-level of the nested list (they divide the list into however many parts based on the number of such arguments and the remapping behavior).x
andy
sit at the bottom-level of the nested list
- A single ggplot object = Created by
aes_loop()
= meant to mimickaes()
; can accept one or more arguments (a vector of arguments) with dplyr-like and ggplot2-like syntax; both syntax styles can be combined for one argument using thec()
as a wrapper and onlyc()
.- dplyr-like =
mpg:hp
,1
,5:9
,cyl
, etc - ggplot2-like =
factor(cyl)
,gear + cyl
, etc
- dplyr-like =
%L+%
= magrittr-like (rip-off)+
operator to accomodate the addition of geoms, stats, etc to any of the returned values ofggloop()
How to use ggloop
A simple example:
g <- ggplot(data = mtcars,
mappings = aes_loop(x = c(mpg:hp, mpg/cyl),
y = c(hp:mpg, disp/hp),
color = gear),
remap_xy = FALSE)
g <- g %L+% geom_point() ## add a simple point geom to every ggplot object
g$gear$`x.mpg/cyl_y.disp/hp` ## view one of the plots