python学习——pandas查看数据集null值:isnull

在数据集中,可能有些字段下会有null值,我们在进行数据处理的时候,不能视而不见,可以使用isnull查看是否有空值



In:all_dummy_df.isnull().sum().sort_values(ascending=False).head(10)
Out:
LotFrontage     486

GarageYrBlt     159

MasVnrArea       23

BsmtHalfBath      2

BsmtFullBath      2

BsmtFinSF2        1

GarageCars        1

TotalBsmtSF       1

BsmtUnfSF         1

GarageArea        1

dtype: int64

 

你可能感兴趣的:(python)