Answers for "how to one hot encode dataframe in scikit learn when there is data that doesnt need to be one hot encoded?"

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 "how to one hot encode dataframe in scikit learn when there is data that doesnt need to be one hot encoded?"

Python Answers by Framework

Browse Popular Code Answers by Language