我想設置一個熊貓數據框的單元格等於另一個。例如:熊貓設置一個單元格值等於另一個
station_dim.loc[station_dim.nlc==573,'longitude']=station_dim.loc[station_dim.nlc==5152,'longitude']
然而,當我檢查
station_dim.loc[station_dim.nlc==573,'longitude']
它返回NaN
除了直接設置station_dim.loc[station_dim.nlc==573,'longitude']
了一些,我有什麼別的選擇嗎?爲什麼我不能使用這種方法?
什麼'station_dim.loc [station_dim.nlc == 5152,'經度']'本身返回? – IanS
我可以手動分配給station_dim.loc的浮點數[station_dim.nlc == 573,'經度']。但是,如果我需要擴大規模,我無法手動完成 –