ggtern: ggtern Constructor

View source: R/ggtern-constructor.R

ggternR Documentation

ggtern Constructor

Description

Plots in ggtern are instigated via the default constructor: ggtern(...), which is essentially a convenience wrapper for the following: ggplot{...} + coord_tern(), indeed, if one wishes to use ggplot{...} + coord_tern() then this is quite satisfactory.

Usage

ggtern(data = NULL, mapping = aes(), ..., environment = parent.frame())

Arguments

data

Default dataset to use for plot. If not already a data.frame, will be converted to one by fortify(). If not specified, must be supplied in each layer added to the plot.

mapping

Default list of aesthetic mappings to use for plot. If not specified, must be supplied in each layer added to the plot.

...

additional arguments passed through to ggplot

environment

[Deprecated] Used prior to tidy evaluation.

Value

ggtern(...) returns an object of class ggplot.

Author(s)

Nicholas Hamilton

See Also

For an introduction to the ggtern package, (including many examples), click HERE.

Examples

ggtern(data=data.frame(x=1,y=1,z=1),aes(x,y,z)) + geom_point()

ggtern documentation built on June 7, 2023, 6:33 p.m.