stack_2data | R Documentation |
Creates a data.frame of species' references that contains longitude, latitude, and species name, using a SpatRaster representing multiple species as input.
stack_2data(species_layers)
species_layers |
SpatRaster object. Each layer must be named as the species that it represents, and values in each layer must be 1 (presence) and 0 (absence). |
A data.frame of species geographic records derived from values of presence in each layer from the SpatRaster
# Data
rsp <- terra::rast(system.file("extdata/sp_layers.tif",
package = "biosurvey"))
names(rsp) <- paste0("Species_", 1:5)
# Species data from SpatRaster
sp_data <- stack_2data(species_layers = rsp)
summary(sp_data)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.