lets.maplizer {letsR} | R Documentation |
Create a matrix summarizing species' attributes within cells of a PresenceAbsence object
Description
Summarize species atributes per cell in a presence-absence matrix.
Usage
lets.maplizer(x, y, z, func = mean, ras = FALSE)
Arguments
x |
A |
y |
Species attribute to be considered. It must be a numeric attribute. |
z |
Species names in the same order as the attributes and exactly the
same as named in the |
func |
A function to summarize the species' atribute in each cell (the function must return only one value). |
ras |
If |
Value
The result can be both a matrix
or a list
cointaining
the follow objects:
Matrix: a matrix
object with the cells' geographic
coordinates and the summarized species' attributes within them.
Raster: The summarized species'attributed maped in a
SpatRaster
object.
Author(s)
Bruno Vilela
See Also
Examples
## Not run:
data(PAM)
data(IUCN)
trait <- IUCN$Description_Year
resu <- lets.maplizer(PAM, trait, PAM$S, ras = TRUE)
head(resu$Matrix)
plot(resu$Raster, xlab = "Longitude", ylab = "Latitude",
main = "Mean description year per site")
## End(Not run)
[Package letsR version 5.0 Index]