Answers for "one hot encoding on df python"

4

one hot encoding python pandas

y = pd.get_dummies(df.Countries, prefix='Country')
print(y.head())
# from here you can merge it onto your main DF
Posted by: Guest on May-12-2020

Python Answers by Framework

Browse Popular Code Answers by Language