ternStab | R Documentation |
ternStab()
is a graph function used to represent the relative contributions
of the three stabilizing effects ("Dominance", "Asynchrony" and "Averaging") on a
ternary plot.
ternStab(x, ..., point = TRUE, add = FALSE)
x |
object of class |
... |
other parameters to be passed through to plotting functions. |
point |
plot the community on the ternary plot ( |
add |
add the community on the current plot window ( |
No return value, graphical function.
Jules Segrestin, jsegrestin@gmail.com
require(Ternary)
# Simulates a custom community time series using 'comTS()':
z <- comTS(nsp = 10, ny = 30, even = 0.6, mvs = 1.5, sync = "0")
# Runs the partitioning of the community coefficient of variation:
x <- partitionR(z)
# Plots the relative contributions
oldpar <- par(no.readonly = TRUE)
par(mar = c(0, 0, 0, 0))
ternStab(x)
# Adds a second community on the ternary plot
z2 <- comTS(nsp = 15, ny = 30, even = .7, mvs = 1.1, sync = "1")
x2 <- partitionR(z2)
ternStab(x2, add = TRUE, col = "red")
par(oldpar)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.