Learn R Programming

BiodiversityR (version 1.5)

rankabundance: Rank Abundance Curves

Description

Provides methods of calculating rank-abundance curves.

Usage

rankabundance(x,y="",factor="",level,digits=1,t=qt(0.975,df=n-1))
rankabunplot(xr,addit=F,labels="",scale="abundance",scaledx=F,type="o",
    xlim=c(min(xpos),max(xpos)),ylim=c(0,max(x[,scale])),specnames=c(1:5),...)
rankabuncomp(x,y="",factor,scale="abundance",scaledx=F,type="o",rainbow=T,
    legend=T,xlim=c(1,max1), ylim=c(0,max2), ...)

Arguments

x
Community data frame with sites as rows, species as columns and species abundance as cell values.
y
Environmental data frame.
factor
Variable of the environmental data frame that defines subsets to calculate rank abundance curves for.
level
Level of the variable to create the subset to calculate rank abundance curves.
digits
Number of digits in the results.
t
t-value to calculate confidence interval limits for the species proportion for cluster sampling (following Hayek and Buzas 1997).
xr
Result from rankabundance.
addit
Add rank abundance curve to an existing graph.
labels
Labels to plot at left of the rank abundance curves.
scale
Method of scaling the vertical axis. Method "abundance" uses abundance, "proportion" uses proportional abundance (species abundance / total abundance), "logabun" calculates the logarithm of abundance using base 10 and "accumfreq" accumulates the proportio
scaledx
Scale the horizontal axis to 100 percent of total number of species.
type
Type of plot (as in function plot)
xlim
Limits for the horizontal axis.
ylim
Limits for the vertical axis.
specnames
Vector positions of species names to add to the rank-abundance curve.
rainbow
Use rainbow colouring for the different curves.
legend
Add the legend (you need to click in the graph where the legend needs to be plotted).
...
Other arguments to be passed to functions plot or points.

Value

  • The functions provide information on rankabundance curves. Function rankabundance provides information on abundance, proportional abundance, logarithmic abundance and accumulated proportional abundance. The function also provides confidence interval limits for the proportion of each species (plower, pupper) and the proportion of species ranks (in percentage).

Details

These functions provide methods of calculating and plotting rank-abundance curves. The vertical axis can be scaled by various methods. Method "abundance" uses abundance, "proportion" uses proportional abundance (species abundance / total abundance), "logabun" calculates the logarithm of abundance using base 10 and "accumfreq" accumulates the proportional abundance. The horizontal axis can be scaled by the total number of species, or by 100 percent of all species by option "scaledx". The method of calculating the confidence interval for species proportion is described in Hayek and Buzas (1997). Functions rankabundance and rankabuncomp allow to calculate rank abundance curves for subsets of the community and environmental data sets. Function rankabundance calculates the rank abundance curve for the specified level of a selected environmental variable. Method rankabuncomp calculates the rank abundance curve for all levels of a selected environmental variable separatedly.

References

Hayek, L.-A. C. & Buzas, M.A. (1997). Surveying Natural Populations. Columbia University Press. Kindt, R. & Coe, R. (2005) Tree diversity analysis: A manual and software for common statistical methods for ecological and biodiversity studies. http://www.worldagroforestry.org/resources/databases/tree-diversity-analysis

Examples

Run this code
library(vegan)
data(dune.env)
data(dune)
RankAbun.1 <- rankabundance(dune)
RankAbun.1
rankabunplot(RankAbun.1,scale='abundance', addit=FALSE, specnames=c(1,2,3))
rankabuncomp(dune, y=dune.env, factor='Management', 
    scale='proportion', legend=FALSE)
## CLICK IN THE GRAPH TO INDICATE WHERE THE LEGEND NEEDS TO BE PLACED
## IF YOU OPT FOR LEGEND=TRUE.

Run the code above in your browser using DataLab