I’m looking for a API Python documentation for Facebook Prophet
Here there are good examples https://facebook.github.io/prophet/docs
future = m.make_future_dataframe(periods=365)
or
future = m.make_future_dataframe(periods=300, freq='H')
But it doesn’t explain all possible parameters in make_future_dataframe
, or the valid values for freq
.
Any idea where to find the API documentation?
2
Answers
Here is where it is defined
https://github.com/facebook/prophet/blob/f123a1a7cc6ab51bd21f01e41738d97910a2b2b7/python/fbprophet/forecaster.py#L1548
The arguments and API usages are documented as per "October 14, 2022" in this link:
https://cran.r-project.org/web/packages/prophet/prophet.pdf