From f6dfb83c9db7e471d171f3c9673eadf098eb4192 Mon Sep 17 00:00:00 2001 From: PierreExeter Date: Mon, 1 Jul 2019 17:31:52 +0100 Subject: [PATCH] Fixed missing parenthesis and colon Fixed missing parenthesis and colon in "Time Series of Price Anomaly Detection Expedia.ipynb" --- Time Series of Price Anomaly Detection Expedia.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Time Series of Price Anomaly Detection Expedia.ipynb b/Time Series of Price Anomaly Detection Expedia.ipynb index bb762f6..d30d4d6 100644 --- a/Time Series of Price Anomaly Detection Expedia.ipynb +++ b/Time Series of Price Anomaly Detection Expedia.ipynb @@ -1886,7 +1886,7 @@ " real_threshold = threshold**windows_size\n", " df_anomaly = []\n", " for j in range(0, len(df)):\n", - " if (j < windows_size\n", + " if (j < windows_size):\n", " df_anomaly.append(0)\n", " else:\n", " sequence = df[j-windows_size:j]\n",