当我运行这样的代码时:
import pandas as pd
A = pd.DataFrame([('a', -1.374201, 35),
('b', 1.415697, 29),
('a', 0.233841, 18),
('b', 1.550599, 30),
('a', -0.178370, 63),
('b', -1.235956, 42),
('a', 0.088046, 2),
('b', 0.074238, 84)], columns='key value other'.split())
B = A.groupby('key')['value'].mean()
C = pd.DataFrame([('a', 0.469924, 44),
('b', 1.231064, 68),
('a', -0.979462, 73),
('b', 0.322454, 97)], columns='key value other'.split())
D = C.set_index('key')
D['value'] -= B
...最后一行失败并显示错误:
Exception: Reindexing only valid with uniquely valued Index objects
我做错了什么?
答案 0 :(得分:3)
如果我正确地遵循你的例子(感谢你添加它,BTW),我相信你需要的就是这样简单:
D.sub(B, axis='index')
这给了我:
In [29]: D.sub(B, axis='index')
Out[29]:
value other
key
a 0.777595 44.307671
a -0.671791 73.307671
b 0.779919 67.548856
b -0.128690 96.548856
正如您所看到的,这会弄乱other
列。如果这是一个问题,遗憾的是,你回到了同样的重复索引状态。