tsrvflf.Rd
This function combines model fitting using tsrvfl() and forecasting in one step. It's a convenience wrapper that fits a model and immediately generates forecasts.
tsrvflf(
y,
h = 5,
lags = 15L,
engine = stats::lm,
level = 95,
n_hidden_features = 5L,
nodes_sim = c("sobol", "halton", "unif"),
activ = c("relu", "sigmoid", "tanh", "leakyrelu", "elu", "linear"),
type_pi = c("surrogate", "kde", "bootstrap"),
B = 250L,
agg = c("mean", "median"),
seed = 123,
coeffs = NULL,
...
)
A numeric vector or time series of the response variable.
The number of steps ahead to forecast.
The number of lags to use in the model.
The engine to use for the model fitting.
The confidence level for the prediction intervals.
The number of hidden features to use in the model.
The method to use for simulating nodes.
The activation function to use in the model.
The type of prediction interval to use.
The number of bootstrap samples to use.
The aggregation function to use.
The random seed to use.
The coefficients to use in the model.
An object of class "forecast" containing the fitted model and forecasts