此问题已在此处有答案:
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()
1条答案
按热度按时间4xrmg8kj1#
实际上,
fillna()
不会修改原始 Dataframe 。您需要将其分配回原始df
。