Horje
convert categorical variable to numeric python Code Example
convert categorical variable to numeric python
# get all categorical columns in the dataframe
catCols = [col for col in df1.columns if df1[col].dtype=="O"]

from sklearn.preprocessing import LabelEncoder

lb_make = LabelEncoder()

for item in catCols:
    df1[item] = lb_make.fit_transform(df1[item])
transform categorical variables python
from sklearn.preprocessing import LabelEncoder

lb_make = LabelEncoder()
obj_df["make_code"] = lb_make.fit_transform(obj_df["make"])
obj_df[["make", "make_code"]].head(11)
Source: pbpython.com
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'})
how to convert categorical data to numerical data in python
pd.get_dummies(obj_df, columns=["body_style", "drive_wheels"], prefix=["body", "drive"]).head()
Source: pbpython.com
how to convert categorical data to numerical data in python
obj_df["body_style"] = obj_df["body_style"].astype('category')
obj_df.dtypes
Source: pbpython.com




Python

Related
split filename and extension python Code Example split filename and extension python Code Example
pandas dataframe column rename Code Example pandas dataframe column rename Code Example
remove all occurrences of a character in a list python Code Example remove all occurrences of a character in a list python Code Example
pyttsx3 save to file Code Example pyttsx3 save to file Code Example
python requests wait for page to load Code Example python requests wait for page to load Code Example

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