impute categorical data pandas code example
Example: 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"]
# get all categorical columns in the dataframe
catCols = [col for col in df.columns if df[col].dtype=="O"]