Created
May 18, 2023 19:15
-
-
Save dleybz/f8368552ff63c74c460ea2473f5b7f44 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
| import pandas as pd | |
| car_claims_raw = pd.read_csv('car_claims_raw.csv') | |
| car_claims_raw_temp = encode_fraud(car_claims_raw) | |
| car_claims_prepared = encode_categorical(car_claims_raw_temp) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment