如何在Python中打印缺少值的列名和缺少值的计数?

时间:2019-11-23 02:14:54

标签: python python-3.x pandas jupyter-notebook data-science

我尝试过

print(housing.columns[housing.isnull().any()], housing.isnull().sum().sum())

并获得以下输出:

Index(['total_bedrooms'], dtype='object') 207

但是我试图获得以下输出:

(total_bedrooms, 207 )

我相信,比我有一种更直观的方式来获得想要的答案。任何帮助将不胜感激。

1 个答案:

答案 0 :(得分:1)

我们可以一行完成

[*df.isnull().sum().loc[lambda x : x>0].items()]