Pandas Dataframe python中的Fillna()[重复]

tzcvj98z  于 2023-05-12  发布在  Python
关注(0)|答案(1)|浏览(109)

此问题已在此处有答案

pandas fillna not working(6个回答)
6天前关闭。
titanic_dataset的数据:就像下面这里:Dataframe before fillna() with NaN values

import pandas as pd
titanic_excel=pd.read_excel("C:\\Users\\mithi\\OneDrive\\Desktop\\pyps\\Domain-wise Task 2\\titanic_excel.xlsx")

titanic_excel.fillna('') # I tried titanic_excel.fillna() also
#print(titanic_excel.dtypes)
titanic_excel
titanic_excel.head()

What I got

4xrmg8kj

4xrmg8kj1#

实际上,fillna()不会修改原始 Dataframe 。您需要将其分配回原始df

titanic_excel = titanic_excel.fillna('')
print(titanic_excel)

相关问题