查找dataframe空值

查找是否有空值

print(np.any(dataset.isnull()))

查找空值在哪一行

print(dataset[dataset.isnull().T.any()])

你可能感兴趣的:(python,开发语言)