
Add Line Segments to a Ternary Plot
Source:R/AllGenerics.R, R/ternary_segments.R
ternary_segments.RdDraw line segments between pairs of points.
Usage
ternary_segments(x0, y0, z0, ...)
# S4 method for class 'numeric,numeric,numeric'
ternary_segments(x0, y0, z0, x1 = x0, y1 = y0, z1 = z0, ...)Arguments
- x0, y0, z0
A
numericvector giving the x, y and z ternary coordinates of points from which to draw.- ...
Further graphical parameters (see
graphics::par()) may also be supplied as arguments, particularly, line type,lty, line width,lwdand color,col. Also the line characteristicslend,ljoinandlmitre.- x1, y1, z1
A
numericvector giving the x, y and z ternary coordinates of points to which to draw.
See also
Other geometries:
ternary_arrows(),
ternary_crosshairs(),
ternary_image(),
ternary_labels(),
ternary_lines(),
ternary_points(),
ternary_polygon(),
ternary_text()
Examples
## Add segments
ternary_plot(NULL, panel.first = ternary_grid())
ternary_segments(x0 = 40, y0 = 20, z0 = 40,
x1 = 20, y1 = 40, z1 = 40)