| plot.isotab | R Documentation | 
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.
## S3 method for class 'isotab'
plot(x, labels = FALSE, text.size = 15, title = NULL,
       phi.min = "isotab", p.max = "isotab", ...)
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)  | 
The thresholds are explained in isotab.  
Prints and returns (invisibly) an object of class ggplot.
Sebastian Schmidtlein
Tichý, L., Chytrý, M. (2006): Statistical determination of diagnostic species for site groups of unequal size. Journal of Vegetation Science 17: 809-–818.
isopam, isotab
   ## 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)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.