sdm_spec_rand_forest: Model specification for a Random Forest for SDM
Description
This function returns a parsnip::model_spec for a Random Forest to
be used as a classifier of presences and absences in Species Distribution
Models. It uses the library ranger to fit boosted trees; to use another
library, simply build the
parsnip::model_spec directly.
test_rf_spec <- sdm_spec_rf(tune = "sdm")
test_rf_spec
# combining tuning with specific values for other hyperparameterssdm_spec_rf(tune = "sdm", trees = 100)