Skip to content

Instantly share code, notes, and snippets.

@sid321axn
Created August 19, 2020 09:35
Show Gist options
  • Save sid321axn/6066e720e23bb3265ae3d7b0a9a0c195 to your computer and use it in GitHub Desktop.
Save sid321axn/6066e720e23bb3265ae3d7b0a9a0c195 to your computer and use it in GitHub Desktop.
from sklearn.preprocessing import LabelEncoder
lb_make = LabelEncoder()
df["type_code"] = lb_make.fit_transform(df["type"])
df["type_code"].value_counts()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment