ggformula | R Documentation |
Provides a formula interface to 'ggplot2' graphics.
The functions in ggformula provide a formula interface to ggplot2 layer
functions and a system for working with pipes to create multi-layer
plots and to refine plots.
For plots with just one layer, the formula interface
is more compact than native ggplot2 code and is consistent with modeling
functions like stats::lm()
that use a formula interface and with the
numerical summary functions in the mosaic package.
Positional attributes (a.k.a aesthetics) are typically specified using a formula
(see the gformula
argument).
Setting and mapping of additional attributes can be done through the use of additional arguments.
Attributes can be set can be set using arguments of the form attribute = value
or
mapped using arguments of the form attribute = ~ expression
.
A (sometimes partial) list of available attributes can be obtained by executing
plotting functions with no arguments.
In formulas of the form A | B
, B
will be used to form facets using
facet_wrap()
or facet_grid()
.
This provides an alternative to gf_facet_wrap()
and
gf_facet_grid()
that is terser and may feel more familiar to users
of lattice.
Evaluation of the ggplot2 code occurs in the environment specified
by environment
. This will typically do the right thing, but is exposed
in case some non-standard behavior is desired. In earlier versions,
the environment of the formula was used, but since some functions in
the package do not require a formula, a separate argument is used now.
Maintainer: Randall Pruim rpruim@calvin.edu
Authors:
Daniel Kaplan kaplan@macalester.edu
Useful links:
Report bugs at https://github.com/ProjectMOSAIC/ggformula/issues
apropos("gf_")
gf_point()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.