From 2c3407b90e86c7dda165b089f9f6450d69021d08 Mon Sep 17 00:00:00 2001 From: Landon Wilkins Date: Sun, 31 Mar 2024 02:08:37 -0600 Subject: [PATCH 1/2] fix typo in C4W1_Assignment.ipynb --- C4/W1/assignment/C4W1_Assignment.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/C4/W1/assignment/C4W1_Assignment.ipynb b/C4/W1/assignment/C4W1_Assignment.ipynb index 45e01044..a5cb6619 100644 --- a/C4/W1/assignment/C4W1_Assignment.ipynb +++ b/C4/W1/assignment/C4W1_Assignment.ipynb @@ -384,7 +384,7 @@ "id": "35gIlQLfu0TT" }, "source": [ - "**You should see that the naive forecast lags 1 step behind the time serie and that both series end on the same time step.**" + "**You should see that the naive forecast lags 1 step behind the time series and that both series end on the same time step.**" ] }, { From 2761f6dbdb99a830fe8257c93e7c63621a435536 Mon Sep 17 00:00:00 2001 From: Landon Wilkins Date: Sun, 31 Mar 2024 02:12:12 -0600 Subject: [PATCH 2/2] fix typo in C4W1_Assignment.ipynb --- C4/W1/assignment/C4W1_Assignment.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/C4/W1/assignment/C4W1_Assignment.ipynb b/C4/W1/assignment/C4W1_Assignment.ipynb index a5cb6619..2432d1ca 100644 --- a/C4/W1/assignment/C4W1_Assignment.ipynb +++ b/C4/W1/assignment/C4W1_Assignment.ipynb @@ -463,7 +463,7 @@ " for time in range(len(series) - window_size):\n", " forecast.append(series[time:time + window_size].mean())\n", " \n", - " # Conver to a numpy array\n", + " # Convert to a numpy array\n", " np_forecast = None\n", " \n", " ### END CODE HERE\n",