我正在尝试清理熊猫中的数据集,信息存储在csv文件中,并使用以下方式导入:
tester = pd.read_csv('date.csv')
每个列都包含一个“?”缺少值的地方。例如,有一个年龄列,其中包含9个问号(?)
当我计算
的值时print tester.isnull().sum()
0岁
print sum(pd.isnull(tester['age'])) 0
也尝试过
print tester['age'].value_counts(dropna=False)
如何替换此值以清除数据?