mirror of
https://github.com/saymrwulf/prophet.git
synced 2026-06-11 00:49:35 +00:00
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:
parent
ffb0ea86e2
commit
c490c88f0c
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue