support functions for audrex
engine(
predictors,
target,
booster,
max_depth,
eta,
gamma,
min_child_weight,
subsample,
colsample_bytree,
lambda,
alpha,
n_windows,
patience,
nrounds
)A data frame with predictors on columns.
A numeric vector with target variable.
String. Optimization methods available are: "gbtree", "gblinear". Default: "gbtree".
Positive integer. Look to xgboost documentation for description. A vector with one or two positive integer for the search boundaries. The default value (NULL) sets automatically the values in c(1, 8).
Positive numeric. Look to xgboost documentation for description. A vector with one or two positive numeric between (0, 1] for the search boundaries. The default value (NULL) sets automatically the values in c(0, 1).
Positive numeric. Look to xgboost documentation for description. A vector with one or two positive numeric for the search boundaries. The default value (NULL) sets automatically the values in c(0, 100).
Positive numeric. Look to xgboost documentation for description. A vector with one or two positive numeric for the search boundaries. The default value (NULL) sets automatically the values in c(0, 100).
Positive numeric. Look to xgboost documentation for description. A vector with one or two positive numeric between (0, 1] for the search boundaries. The default value (NULL) sets automatically the values in c(0, 1).
Positive numeric. Look to xgboost documentation for description. A vector with one or two positive numeric between (0, 1] for the search boundaries. The default value (NULL) sets automatically the values in c(0, 1).
Positive numeric. Look to xgboost documentation for description. A vector with one or two positive numeric for the search boundaries. The default value (NULL) sets automatically the values in c(0, 100).
Positive numeric. Look to xgboost documentation for description. A vector with one or two positive numeric for the search boundaries. The default value (NULL) sets automatically the values in c(0, 100).
Positive integer. Number of (expanding) windows for cross-validation. Default: 3.
Positive numeric. Percentage of waiting rounds without improvement before xgboost stops. Default: 0.1
Positive numeric. Number of round for the extreme boosting machine. Look to xgboost for description. Default: 100.