Answers for "one hot encoding pandas columns"

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

Code answers related to "one hot encoding pandas columns"

Python Answers by Framework

Browse Popular Code Answers by Language