unit8co / darts

A python library for user-friendly forecasting and anomaly detection on time series.
https://unit8co.github.io/darts/
Apache License 2.0
7.91k stars 857 forks source link

Ability to add regressors to a Prophet model in Python #2514

Open BenJCross1995 opened 2 weeks ago

BenJCross1995 commented 2 weeks ago

In the Facebook Prophet library there is the ability to add regressors prior to fitting the model, the ability to do that is missing in darts. We can only add seasonality, as far as i'm aware.

It would be great to have this capability included in the package with the add_regressors function. Thanks.

dennisbader commented 2 weeks ago

Hi @BenJCross1995, this is supported through the future_covariates in fit() and predict().