选择仅包含数字而不包含字符串的列

时间:2019-05-22 16:07:54

标签: pandas

我正在使用hads数据集。该集合包含许多家庭条目,每个家庭都有许多变量。在这些变量列中,许多都是用'variable_info_here'表示的字符串,我想创建一个仅包含数字的变量的新数据框。由于变量很多,我不知道哪个变量仅包含数字。有没有一种快速的方法来检查这一点?

1 个答案:

答案 0 :(得分:1)

要选择带有数字的列,请尝试:

df.select_dtypes(include=[np.number])

https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.DataFrame.select_dtypes.html