我需要在熊猫数据框中用一个单元格替换另一个单元格

时间:2019-02-21 09:39:51

标签: python-3.x pandas

我想用熊猫数据框中的enter image description here

替换一行中的一个单元格

1 个答案:

答案 0 :(得分:0)

这可以解决您的特定问题:

df.iloc[4,3] = df.iloc[4,2]
df.iloc[4,2] = df.iloc[4,1]

在不知道您实际要做什么的情况下不能说更多