Frequency distribution of a variable within a species' range
Source:R/lets_classvar.R
lets.classvar.Rd
Based on a species Presence-Absence matrix including
variables of interest (see lets.addvar
), the
function divides a continuous variable into classes and counts
the frequency of each class within each species' range.
Arguments
- x
Presence-absence
matrix
with a single variable added (seelets.addvar
).- groups
The number of classes into which the variable will be divided. Default calculates the number of classes as the default for a histogram (
hist
).- pos
Column number containing the variable of interest.
- xy
Logical, if
TRUE
the input matrix contains the geographic coordinates in the first two columns.
References
Morales-Castilla et al. 2013. Range size patterns of New World oscine passerines (Aves): insights from differences among migratory and sedentary clades. Journal of Biogeography, 40, 2261-2273.
Examples
if (FALSE) { # \dontrun{
data(PAM)
data(temp)
pamvar <- lets.addvar(PAM, temp)
resu <- lets.classvar(x = pamvar, pos = ncol(pamvar), xy = TRUE)
} # }