这是我的df:
In[12]: df = pd.DataFrame(data = list("aabbcc"), columns = ["s"], index=range(11,17))
In[13]: df
Out[13]:
s
11 a
12 a
13 b
14 b
15 c
16 c
现在,根据索引值替换值:
In[14]: df.loc[11, "s"] = 'A'
In[15]: df
Out[15]:
s
11 A
12 a
13 b
14 b
15 c
16 c
In[16]: df.ix[12, "s"] = 'B'
In[17]: df
Out[17]:
s
11 A
12 B
13 b
14 b
15 c
16 c
是否可以根据位置而不是索引值执行相同的操作,如下所示,但它显示了ValueError(ValueError: Can only index by location with a [integer, integer slice (START point is INCLUDED, END point is EXCLUDED), listlike of integers, boolean array]
):
In[18]: df.iloc[1, "s"] = 'b'
而且,如果我尝试这样的事情:
df.s.iloc[1] = "b"
我收到了这个警告:
SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
答案 0 :(得分:10)
您可以使用get_loc获取列的位置并将其传递给iloc:
df.iloc[1, df.columns.get_loc('s')] = 'B'
df
Out:
s
11 a
12 B
13 b
14 b
15 c
16 c
或者相反:
df.loc[df.index[1], 's'] = 'B'