Modified saturating_forecasts.md (#1215)

Changed forecast period on line 60 from '3' years to '5' years. 5 years is actually what is being calculated in the example.
This commit is contained in:
Tobi Sam 2020-02-03 22:10:59 +01:00 committed by GitHub
parent ffb0ea86e2
commit c490c88f0c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -57,7 +57,7 @@ m <- prophet(df, growth = 'logistic')
m = Prophet(growth='logistic')
m.fit(df)
```
We make a dataframe for future predictions as before, except we must also specify the capacity in the future. Here we keep capacity constant at the same value as in the history, and forecast 3 years into the future:
We make a dataframe for future predictions as before, except we must also specify the capacity in the future. Here we keep capacity constant at the same value as in the history, and forecast 5 years into the future:
```R