Skip to content

Commit

Permalink
修正issue6讨论结果
Browse files Browse the repository at this point in the history
  • Loading branch information
altholin committed Sep 7, 2018
1 parent 8a485a4 commit d2c9d7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Code/Day 1_Data_Preprocessing.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@
"from sklearn.preprocessing import StandardScaler\n",
"sc_X = StandardScaler()\n",
"X_train = sc_X.fit_transform(X_train)\n",
"X_test = sc_X.fit_transform(X_test)\n",
"X_test = sc_X.transform(X_test)\n",
"print(\"---------------------\")\n",
"print(\"Step 6: Feature Scaling\")\n",
"print(\"X_train\")\n",
Expand Down

0 comments on commit d2c9d7e

Please sign in to comment.