Skip to content
#

forecasting

Here are 1,102 public repositories matching this topic...

sameermahajan
sameermahajan commented Nov 15, 2021

make_future_dataframe doesn't support regressors currently. So code like:

m = Prophet()
m.add_regressor('var')
m.fit(df)
forecasts = m.predict(m.make_future_dataframe(periods=7))

gives an error like:

ValueError: Regressor 'var' missing from dataframe when attempting to generate forecasts

I know prophet may not know what exact values to put for var in each of the rows a

sktime
fkiraly
fkiraly commented Dec 14, 2021

The extension templates (here: https://github.com/alan-turing-institute/sktime/tree/main/extension_templates) should be extended with a preamble that treats soft dependencies.

The challenge is to keep it very brief, and to make clear that adding soft dependencies is only necessary for the case of extending sktime itself. If the template is used in a project/package that has sktime as a depe

gluon-ts

Time series Timeseries Deep Learning Machine Learning Pytorch fastai | State-of-the-art Deep Learning library for Time Series and Sequences in Pytorch / fastai

  • Updated Dec 21, 2021
  • Jupyter Notebook
pmdarima
nicolaschapados
nicolaschapados commented Nov 14, 2021

Is your feature request related to a problem? Please describe.

It would be nice to directly support simulating from a fitted ARIMA model, e.g. to have a simulate method to call that would delegate to statsmodels.tsa.arima.model.ARIMA.simulate. Right now, the only way I found is to use arima_res_ member of the fitted object.

Describe the solution you'd like

Class `pmdarima.arima.ar

flow-forecast

Improve this page

Add a description, image, and links to the forecasting topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the forecasting topic, visit your repo's landing page and select "manage topics."

Learn more