Open carlosg-m opened 1 year ago
@AlexandroLuis please share some of your knowledge :)
Hello @carlosg-m
'regressor_1': [5, 8, 7, 9, 10] # exogenous variable
model.add_regressor('regressor_1') # Add your exogenous variable to model
Add regressor values for the future dates if i'ts known
future['regressor_1'] = [11, 12, 13]
I have specified the mode of seasonality, if i'ts a week and a year season and let the daily the default one, with is False.
When applying Linear Regression or Autoreg to a timeseries it is usually beneficial to create new features based on exogenous variables to extract temporal information, for example lags, moving averages and so on.
1) Does Prophet require such a step or is there a mechanism in place to extract or account for temporal dependencies provided by regressors? 2) Do we need to standardize regressors with z-score? 3) Does Prophet have built-in feature selection for regressors?