plot.isotab {isopam} | R Documentation |
Plot species fidelities to clusters
Description
Function to plot isotab
results. Based on equalised phi
values according to Tichý & Chitrý (2006),
the method visualises how closely how many species are associated with
clusters.
Usage
## S3 method for class 'isotab'
plot(x, labels = FALSE, text.size = 15, title = NULL,
phi.min = "isotab", p.max = "isotab", ...)
Arguments
x |
Object of class |
labels |
Logical. Whether the bars should be labeled with species names. You may
need to enlarge the figure height to accommodate these names (or decrease
|
text.size |
Text size |
title |
Optional text string with title |
phi.min |
Threshold of equalized phi determining which species are shown.
Applies only to species passing the criterion defined by |
p.max |
Threshold of Fisher's p determining which species are shown.
Applies only to species passing the criterion defined by |
... |
Other arguments (ignored) |
Details
The thresholds are explained in isotab
.
Value
Prints and returns (invisibly) an object of class ggplot
.
Author(s)
Sebastian Schmidtlein
References
Tichý, L., Chytrý, M. (2006): Statistical determination of diagnostic species for site groups of unequal size. Journal of Vegetation Science 17: 809-–818.
See Also
Examples
## load data to the current environment
data(andechs)
## call isopam with the default options
ip <- isopam(andechs)
## calculate fidelities
it <- isotab(ip)
## plotting
plot(it)
## show species labels
plot(it, labels = TRUE)
## show all species
plot(it, phi.min = 0)