get_forecast.Rd
Obtain forecasts from a csv file
get_forecast(
path_to_file,
base_model = "RidgeCV",
n_hidden_features = 5L,
lags = 25L,
type_pi = "gaussian",
replications = NULL,
h = 10L
)
a string; path to csv file containing time series data (examples: https://github.com/Techtonique/datasets/tree/main/time_series/univariate)
a string; Forecasting method to use (default is "RidgeCV"); for now scikit-learn model names.
an integer; Number of hidden features for the model (default is 5).
an integer; Number of lags to use in the model (default is 25).
a string; Type of prediction interval to use (default is 'gaussian').
an integer; Number of replications for certain methods (default is None).
an integer; Forecast horizon (default is 10).