Answers for "get categorical data pandas"

2

display all categorical column in pandas dataframe

# get all categorical columns in the dataframe
catCols = [col for col in df.columns if df[col].dtype=="O"]
Posted by: Guest on May-30-2021
0

how to store categorical variables in separate dataframe

df.loc[:,df.dtypes==np.object]
Posted by: Guest on March-22-2021

Code answers related to "get categorical data pandas"

Python Answers by Framework

Browse Popular Code Answers by Language