From d8d819a34fc0188fe648fd86962333afb02be64b Mon Sep 17 00:00:00 2001 From: Drobin Max Date: Mon, 24 May 2021 17:32:14 +0300 Subject: [PATCH] Update forecaster.py added 'flat' growth option in docstring --- python/prophet/forecaster.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/prophet/forecaster.py b/python/prophet/forecaster.py index 7d02b85..e9b826f 100644 --- a/python/prophet/forecaster.py +++ b/python/prophet/forecaster.py @@ -27,8 +27,8 @@ class Prophet(object): Parameters ---------- - growth: String 'linear' or 'logistic' to specify a linear or logistic - trend. + growth: String 'linear', 'logistic' or 'flat' to specify a linear, logistic or + flat trend. changepoints: List of dates at which to include potential changepoints. If not specified, potential changepoints are selected automatically. n_changepoints: Number of potential changepoints to include. Not used