mirror of
https://github.com/saymrwulf/prophet.git
synced 2026-05-14 20:48:08 +00:00
* Allow both both hoidays and append holidays Match holidays in predict and fit Add test for append_holiday features; minor fixes Add column name validation for append_holidays names; allow only one country Fix bug about holiday year different from input year and also other bugs Change function description Add append holiday feature for R * Add test for R/Pyrhon; fix bugs |
||
|---|---|---|
| .. | ||
| fbprophet | ||
| scripts | ||
| stan | ||
| LICENSE | ||
| MANIFEST.in | ||
| pyproject.toml | ||
| README | ||
| requirements.txt | ||
| setup.py | ||
Prophet: Automatic Forecasting Procedure ======================================== Prophet is a procedure for forecasting time series data based on an additive model where non-linear trends are fit with yearly, weekly, and daily seasonality, plus holiday effects. It works best with time series that have strong seasonal effects and several seasons of historical data. Prophet is robust to missing data and shifts in the trend, and typically handles outliers well. Prophet is `open source software <https://code.facebook.com/projects/>`_ released by Facebook's `Core Data Science team <https://research.fb.com/category/data-science/>`_. Full documentation and examples available at the homepage: https://facebook.github.io/prophet/ Important links --------------- - HTML documentation: https://facebook.github.io/prophet/docs/quick_start.html - Issue tracker: https://github.com/facebook/prophet/issues - Source code repository: https://github.com/facebook/prophet - Implementation of Prophet in R: https://cran.r-project.org/package=prophet Other forecasting packages -------------------------- - Rob Hyndman's `forecast package <http://robjhyndman.com/software/forecast/>`_ - `Statsmodels <http://statsmodels.sourceforge.net/>`_ Installation ------------ :: $ pip install fbprophet Note: Installation requires PyStan, which has its `own installation instructions <http://pystan.readthedocs.io/en/latest/installation_beginner.html>`_. On Windows, PyStan requires a compiler so you'll need to `follow the instructions<http://pystan.readthedocs.io/en/latest/windows.html>`_. The key step is installing a recent `C++ compiler <http://landinghub.visualstudio.com/visual-cpp-build-tools>`_. Example usage ------------- :: >>> from fbprophet import Prophet >>> m = Prophet() >>> m.fit(df) # df is a pandas.DataFrame with 'y' and 'ds' columns >>> future = m.make_future_dataframe(periods=365) >>> m.predict(future)