从DataFrame中挑出固定类型的列

numeric_feaures=all_features.dtype[all_features.dtype!='object'].index

分部解析:

all_features.dtypes:返回每个列数值类型。

 

 

all_features.dtypes !='object':返回每个列的布尔值,类型不满足object为True否则为False。
all_features.dtypes[all_features.dtypes !='object']:将类型为object的列去除。

 

all_features.dtypes[all_features.dtypes !='object'].index:返回类型不为object列的列名。

 

 

 

posted @ 2021-07-27 21:09  祥瑞哈哈哈  阅读(1439)  评论(0编辑  收藏  举报