From dd17aae001a1f10ecac648fa5ec760c167800d02 Mon Sep 17 00:00:00 2001 From: KLN888 <69143967+KLN888@users.noreply.github.com> Date: Sat, 28 Aug 2021 19:54:48 +0530 Subject: [PATCH] Update notebook.ipynb --- 7-TimeSeries/2-ARIMA/solution/notebook.ipynb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/7-TimeSeries/2-ARIMA/solution/notebook.ipynb b/7-TimeSeries/2-ARIMA/solution/notebook.ipynb index 1a42ab15..cef8bed5 100644 --- a/7-TimeSeries/2-ARIMA/solution/notebook.ipynb +++ b/7-TimeSeries/2-ARIMA/solution/notebook.ipynb @@ -1004,9 +1004,9 @@ }, { "cell_type": "code", - "execution_count": 19, + "execution_count": 20, "source": [ - "if(HORIZON == 1):\n", + "if(HORIZON+1 == 1):\n", " ## Plotting single step forecast\n", " eval_df.plot(x='timestamp', y=['actual', 'prediction'], style=['r', 'b'], figsize=(15, 8))\n", "\n", @@ -1073,7 +1073,7 @@ "language_info": { "codemirror_mode": { "name": "ipython", - "version": 3 + "version": 3.8.1 }, "file_extension": ".py", "mimetype": "text/x-python", @@ -1096,4 +1096,4 @@ }, "nbformat": 4, "nbformat_minor": 2 -} \ No newline at end of file +}