Draws the polygons whose vertices are given in x
, y
and z
.
Usage
ternary_polygon(x, y, z, ...)
# S4 method for class 'numeric,numeric,numeric'
ternary_polygon(x, y, z, ...)
# S4 method for class 'ANY,missing,missing'
ternary_polygon(x, y, z, ...)
Arguments
- x, y, z
A
numeric
vector giving the x, y and z ternary coordinates of a set of points. Ify
andz
are missing, an attempt is made to interpretx
in a suitable way (seegrDevices::xyz.coords()
).- ...
Further arguments to be passed to
graphics::polygon()
.
See also
Other geometries:
ternary_arrows()
,
ternary_crosshairs()
,
ternary_labels()
,
ternary_lines()
,
ternary_points()
,
ternary_segments()
,
ternary_text()
Examples
## Compositional data
coda <- data.frame(
X = c(20, 60, 20),
Y = c(20, 20, 60),
Z = c(60, 20, 20)
)
## Add a polygon
ternary_plot(NULL, panel.first = ternary_grid())
ternary_polygon(coda, density = 5, border = "red")