我尝试过
print(housing.columns[housing.isnull().any()], housing.isnull().sum().sum())
并获得以下输出:
Index(['total_bedrooms'], dtype='object') 207
但是我试图获得以下输出:
(total_bedrooms, 207 )
我相信,比我有一种更直观的方式来获得想要的答案。任何帮助将不胜感激。
答案 0 :(得分:1)
我们可以一行完成
[*df.isnull().sum().loc[lambda x : x>0].items()]