sdm_spec_maxent {tidysdm} | R Documentation |
Model specification for a MaxEnt for SDM
Description
This function returns a parsnip::model_spec for a MaxEnt model to be used in Species Distribution Models.
Usage
sdm_spec_maxent(..., tune = c("sdm", "all", "custom", "none"))
Arguments
... |
parameters to be passed to |
tune |
character defining the tuning strategy. Valid strategies are:
|
Value
a parsnip::model_spec of the model.
See Also
Other "sdm model specifications":
sdm_spec_boost_tree()
,
sdm_spec_gam()
,
sdm_spec_glm()
,
sdm_spec_rand_forest()
Examples
test_maxent_spec <- sdm_spec_maxent(tune = "sdm")
test_maxent_spec
# setting specific values
sdm_spec_maxent(tune = "custom", feature_classes = "lq")
[Package tidysdm version 0.9.5 Index]