Answers for "how to encode only categorical columns to numeric values in pandas"

1

pandas categorical to numeric

#this will label as one hot vectors (origin is split into 3 columns - USA, Europe, Japan and any one place will be 1 while the others are 0)
dataset['Origin'] = dataset['Origin'].map({1: 'USA', 2: 'Europe', 3: 'Japan'})
Posted by: Guest on September-03-2020

Code answers related to "how to encode only categorical columns to numeric values in pandas"

Browse Popular Code Answers by Language