Create multiple tidymodels workflows for H3-based SDMs
Source:R/h3sdm_workflows.R
h3sdm_workflows.RdCreates a list of tidymodels workflows from multiple model specifications and a prepared recipe. This is useful for comparing different modeling approaches in species distribution modeling using H3 hexagonal grids. The returned workflows can be used for model fitting and resampling.
Arguments
- model_specs
A named list of
tidymodelsmodel specifications (e.g.,logistic_reg(),rand_forest(),boost_tree()), where each element specifies a different modeling approach to be included in the workflow set.- recipe
A
tidymodelsrecipe object, typically created withh3sdm_recipe(), which prepares and preprocesses the data for modeling.