This function performs the complete workflow for modeling habitat suitability for multiple species. It includes sampling land-use data for presence and background points separately, and then fitting a MaxEnt model to predict habitat suitability based on the available land-use types.
Value
A data frame with predicted habitat suitability scores for each land-use type for each species.
Details
The function encompasses several steps:
Grouping the data by species using
dplyr::group_split.Sampling land-use data for species presence points using the
SampleLandusefunction.Sampling land-use data for background points using the
SampleLandusefunction.Combining the presence and background data, and fitting a MaxEnt model to predict habitat suitability using the
ModelSpeciesfunction, which also handles the duplication of rows where necessary.
