Created
April 19, 2021 22:11
-
-
Save gvyshnya/fee3bdd6bae93fbd15612b3c4065b839 to your computer and use it in GitHub Desktop.
Adding log transformed features using featurewiz
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
###### log transform these columns ########## | |
log_cols = {'cont5':'log', 'cont8':'log', 'cont7':'log'} | |
train_copy = FW.FE_transform_numeric_columns(train_copy, log_cols) | |
test_copy = FW.FE_transform_numeric_columns(test_copy, log_cols) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment