View source: R/plotSiberObject.R
plotSiberObject | R Documentation |
This function takes a SIBER object as created by
createSiberObject
, and loops over communities and their groups,
creating a scatterplot, and adding ellipses and hulls as desired. Ellipses can be
added to groups, while convex hulls can be added at both the group and
community level (the former for illustrative purposes only, with no
analytical tools in SIBER to fit Bayesian hulls to individual groups. This is
not mathematically possible in a Bayesian framework.).
plotSiberObject(
siber,
iso.order = c(1, 2),
ax.pad = 1,
hulls = TRUE,
community.hulls.args = NULL,
ellipses = TRUE,
group.ellipses.args = NULL,
group.hulls = FALSE,
group.hulls.args = NULL,
bty = "L",
xlab = "Isotope 1",
ylab = "Isotope 2",
las = 1,
x.limits = NULL,
y.limits = NULL,
points.order = 1:25,
...
)
siber |
a siber object as created by |
iso.order |
a vector of length 2, either |
ax.pad |
a padding amount to apply to the x-axis either side of the extremes of the data. Defaults to 1. |
hulls |
a logical defaulting to |
community.hulls.args |
a list of plotting arguments to pass to
|
ellipses |
a logical defaulting to TRUE determining whether or not an ellipse should be drawn around each group within each community. |
group.ellipses.args |
a list of plotting arguments to pass to
|
group.hulls |
a logical defaulting to FALSE determining whether or not convex hulls should be drawn around each group within each community. |
group.hulls.args |
a list of plotting options to pass to
|
bty |
a string specifying the box type for the plot. See
|
xlab |
a string for the x-axis label. |
ylab |
a string for the y-axis label. |
las |
a scalar determining the rotation of the y-axis labels. Defaults
to horizontal with |
x.limits |
allows you to specify a two-element vector of lower and upper x-axis limits. Specifying this argument over-rides the automatic plotting and ax.pad option. Defaults to NULL. |
y.limits |
allows you to specify a two-element vector of lower and upper y-axis limits. Specifying this argument over-rides the automatic plotting and ax.pad option. Defaults to NULL. |
points.order |
a vector of integers specifying the order of point types
to use. See |
... |
additional arguments to be passed to |
An isotope scatterplot.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.