From c490c88f0c75e5bea7db7bcfccba73ebc8d4a7a5 Mon Sep 17 00:00:00 2001 From: Tobi Sam Date: Mon, 3 Feb 2020 22:10:59 +0100 Subject: [PATCH] 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. --- docs/_docs/saturating_forecasts.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/_docs/saturating_forecasts.md b/docs/_docs/saturating_forecasts.md index 123b072..1fbd586 100644 --- a/docs/_docs/saturating_forecasts.md +++ b/docs/_docs/saturating_forecasts.md @@ -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