From ba3f3338f44bc0090fb2458b09223fe927b958c3 Mon Sep 17 00:00:00 2001 From: Asish Jose <132321616+asishjose@users.noreply.github.com> Date: Sun, 19 Oct 2025 20:30:11 +0530 Subject: [PATCH] Change CSV file URLs in saturating_forecasts.md Updated example CSV file URLs for R and Python code. --- docs/_docs/saturating_forecasts.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/_docs/saturating_forecasts.md b/docs/_docs/saturating_forecasts.md index 862b506c2..0d1310df8 100644 --- a/docs/_docs/saturating_forecasts.md +++ b/docs/_docs/saturating_forecasts.md @@ -24,11 +24,11 @@ Prophet allows you to make forecasts using a [logistic growth](https://en.wikipe ```R # R -df <- read.csv('https://raw.githubusercontent.com/facebook/prophet/main/examples/example_wp_log_peyton_manning.csv') +df <- read.csv('https://raw.githubusercontent.com/facebook/prophet/main/examples/example_wp_log_R.csv') ``` ```python # Python -df = pd.read_csv('https://raw.githubusercontent.com/facebook/prophet/main/examples/example_wp_log_peyton_manning.csv') +df = pd.read_csv('https://raw.githubusercontent.com/facebook/prophet/main/examples/example_wp_log_R.csv') ``` We must specify the carrying capacity in a column `cap`. Here we will assume a particular value, but this would usually be set using data or expertise about the market size.