These functions modify things like labels, limits, scales, etc. for plots ggplot2 plots. They are wrappers around functions in ggplot2 that allow for chaining syntax.
gf_labs(object, ...)gf_lims(object, ...)
gf_facet_wrap(object, ...)
gf_facet_grid(object, ...)
gf_refine(object, ...)
a gg object
additional arguments passed through to the similarly named function in ggplot2.
a modified gg object
gf_refine()
provides a mechanism to replace +
with the
chaining operator from magrittr.
Each of its …
arguments is added in turn to the
base plot in object
. The other functions are thin wrappers around
specific ggplot2
refinement functions and pass their …
arguments through to the similarly named ggplot2
functions.