skip to Main Content

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


  1. Here is where it is defined

    https://github.com/facebook/prophet/blob/f123a1a7cc6ab51bd21f01e41738d97910a2b2b7/python/fbprophet/forecaster.py#L1548

        def make_future_dataframe(self, periods, freq='D', include_history=True):
    
    Login or Signup to reply.
  2. 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

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search