diff --git a/docs/_docs/additional_topics.md b/docs/_docs/additional_topics.md index 0e2209d..ea62168 100644 --- a/docs/_docs/additional_topics.md +++ b/docs/_docs/additional_topics.md @@ -240,7 +240,7 @@ There are few caveats that should be kept in mind when considering warm-starting -Before model fitting, Prophet scales `y` by dividing by the maximum value in the history. For datasets with very large `y` values, the scaled `y` values may be compressed to a very small range (i.e. `[0.99999... - 1.0]`), which causes a bad fit. This can be fixed by setting `scaling='absmax'` in the Prophet constructor. +Before model fitting, Prophet scales `y` by dividing by the maximum value in the history. For datasets with very large `y` values, the scaled `y` values may be compressed to a very small range (i.e. `[0.99999... - 1.0]`), which causes a bad fit. This can be fixed by setting `scaling='minmax'` in the Prophet constructor. ```python diff --git a/notebooks/additional_topics.ipynb b/notebooks/additional_topics.ipynb index 7f87f77..760d923 100644 --- a/notebooks/additional_topics.ipynb +++ b/notebooks/additional_topics.ipynb @@ -437,7 +437,7 @@ "source": [ "### minmax scaling (new in 1.1.5)\n", "\n", - "Before model fitting, Prophet scales `y` by dividing by the maximum value in the history. For datasets with very large `y` values, the scaled `y` values may be compressed to a very small range (i.e. `[0.99999... - 1.0]`), which causes a bad fit. This can be fixed by setting `scaling='absmax'` in the Prophet constructor." + "Before model fitting, Prophet scales `y` by dividing by the maximum value in the history. For datasets with very large `y` values, the scaled `y` values may be compressed to a very small range (i.e. `[0.99999... - 1.0]`), which causes a bad fit. This can be fixed by setting `scaling='minmax'` in the Prophet constructor." ] }, {