📌  相关文章
📜  在 pandas 数据框中显示所有分类列 - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:54.534000             🧑  作者: Mango

代码示例1
# get all categorical columns in the dataframe
catCols = [col for col in df.columns if df[col].dtype=="O"]