pandas Python CSV文件如何编辑文件中不相关的数据[已关闭]

tjvv9vkg  于 2022-12-09  发布在  Python
关注(0)|答案(1)|浏览(117)

已关闭。此问题需要details or clarity。当前不接受答案。
**想要改进此问题吗?**通过editing this post添加详细信息并阐明问题。

4天前关闭。
Improve this question
在python中有一个CSV文件,类似于

文件中有一些“?”数据,我需要对它们进行数据预处理(=NaN或其他我不知道的东西)。我该怎么做呢?
我试过这种方法

但看起来像是暂时的

798qvoo8

798qvoo81#

#this way you can find all the rows with this value
df[df['age'].str.contains('\\?')]

#this way you can replace if for whatever value you want, it will do it in all the df
df.replace('?', 'NA',inplace=True)

相关问题