Automatically generates all configured feature types from one or more environmental variable vectors.
Usage
maxent_generate_features(
data,
types = c("linear", "quadratic", "product", "threshold", "hinge"),
n_thresholds = 10L,
n_hinges = 10L
)Arguments
- data
Named list of numeric vectors, one per environmental variable.
- types
Character vector of feature types to generate. Valid values:
"linear","quadratic","product","threshold","hinge". Defaults to all types.- n_thresholds
Integer; number of threshold knots per variable (default: 10).
- n_hinges
Integer; number of hinge knots per variable (default: 10).