crosstabanalysis {BiodiversityR}R Documentation

Presence-absence Analysis by Cross Tabulation

Description

This function makes a cross-tabulation of two variables after transforming the first variable to presence-absence and then returns results of chisq.test.

Usage

crosstabanalysis(x,variable,factor)

Arguments

x Data set that contains the variables "variable" and "factor".
variable Variable to be transformed in presence-absence in the resulting cross-tabulation.
factor Variable to be used for the cross-tabulation together with the transformed variable.

Value

The function returns the results of chisq.test on a crosstabulation of two variables, after transforming the first variable to presence-absence first.

Author(s)

Roeland Kindt

References

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/treesandmarkets/tree_diversity_analysis.asp

Examples

library(vegan)
data(dune.env)
crosstabanalysis(dune.env,"Manure","Management")

[Package BiodiversityR version 1.2 Index]