Skip to content

Commit a0f65ad

Browse files
authored
fix invalid json due to missing \n
1 parent f4033e3 commit a0f65ad

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
@@ -135,7 +135,7 @@
135135
" mean, std = data[each].mean(), data[each].std()\n",
136136
" scaled_features[each] = [mean, std]\n",
137137
" data.loc[:, each] = (data[each] - mean)/std\n"
138-
" test_data.loc[:, each] = (test_data[each] - mean)/std"
138+
" test_data.loc[:, each] = (test_data[each] - mean)/std\n"
139139
]
140140
},
141141
{

0 commit comments

Comments
 (0)