diff --git a/.ipynb_checkpoints/stock_market(complete)-checkpoint.ipynb b/.ipynb_checkpoints/stock_market(complete)-checkpoint.ipynb index 618d424..3c08fd7 100644 --- a/.ipynb_checkpoints/stock_market(complete)-checkpoint.ipynb +++ b/.ipynb_checkpoints/stock_market(complete)-checkpoint.ipynb @@ -458,7 +458,7 @@ } ], "source": [ - "# Using forward fill for time-series continuity\n", + "# Using forward fill for time-series continuity in stock prediction\n", "df['Open'] = df['Open'].ffill()\n", "df['High'] = df['High'].ffill()\n", "df['Low'] = df['Low'].ffill()\n", @@ -467,7 +467,9 @@ "df['Volume'] = df['Volume'].ffill()\n", "\n", "# Checking for remaining NaN values\n", - "df.isnull().sum()" + "df.isnull().sum()\n", + "\n", + "\n" ] }, {