Jeden gorący kodowanie pandów Python
y = pd.get_dummies(df.Countries, prefix='Country')
print(y.head())
# from here you can merge it onto your main DF
Exuberant Eel
y = pd.get_dummies(df.Countries, prefix='Country')
print(y.head())
# from here you can merge it onto your main DF
labels = (np.arange(num_labels) == labels[:,None]).astype(np.float32)
from sklearn.preprocessing import OneHotEncoder
encoder = preprocessing.OneHotEncoder(handle_unknown='ignore')
y = np.array([1, 2, 1, 3])
y = y.reshape(-1,1)
encoder.fit(y)
y_oh = encoder.transform(y).toarray()
print(y_oh)
>>[[1. 0. 0.]
[0. 1. 0.]
[1. 0. 0.]
[0. 0. 1.]]