Created
August 6, 2020 16:41
-
-
Save burnpiro/c724b6839f229386e99aeee281f3cdec to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if scale_cols: | |
# Scale year and week no but within (0,1) | |
new_data[scale_cols] = MinMaxScaler(feature_range=(0, 1)).fit(train_scale[scale_cols]).transform( | |
new_data[scale_cols]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment