Skip to content

Commit 5dcb0a8

Browse files
authored
fix: add training ","
1 parent a0f65ad commit 5dcb0a8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

project-bikesharing/Predicting_bike_sharing_data.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@
134134
"for each in quant_features:\n",
135135
" mean, std = data[each].mean(), data[each].std()\n",
136136
" scaled_features[each] = [mean, std]\n",
137-
" data.loc[:, each] = (data[each] - mean)/std\n"
137+
" data.loc[:, each] = (data[each] - mean)/std\n",
138138
" test_data.loc[:, each] = (test_data[each] - mean)/std\n"
139139
]
140140
},

0 commit comments

Comments
 (0)