This file contains 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
df_drug = pd.read_csv("drug200.csv") | |
label_encoder = LabelEncoder() | |
categorical_features = [feature for feature in df_drug.columns if df_drug[feature].dtypes == 'O'] | |
for feature in categorical_features: | |
print(feature, list(df_drug[feature].unique()), list(label_encoder.fit_transform(df_drug[feature].unique())), "\n") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment