Horje
convert categorical data type to int in pandas Code Example
panda categorical data into numerica
sex = train_dataset['Sex'].replace(['female','male'],[0,1])
print(sex)
convert categorical data type to int in pandas
from sklearn import preprocessing

lab_encoder = preprocessing.LabelEncoder()
df['column'] = lab_encoder.fit_transform(df['column'])
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'})




Python

Related
convert categorical column to int in pandas Code Example convert categorical column to int in pandas Code Example
merge multiple excel workssheets into a single dataframe Code Example merge multiple excel workssheets into a single dataframe Code Example
import this Code Example import this Code Example
python print string name in pattern Code Example python print string name in pattern Code Example
logout redirect url Code Example logout redirect url Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
7