Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have two DataFrames, one of which is larger than the other (A). The labels on B are all contained within A. I want to take the difference (A-B) for the row/column values that correspond. Does anyone have any suggestions?

share|improve this question

1 Answer

You should be able to simply do A.sub(B). For example:

df = DataFrame(np.random.randn(4, 2), columns=['one','two'])
A = df.ix[1:, ['one', 'two']]
B = df.ix[:2, ['one']].apply(lambda x: x *2)

If A is:

     one        two
1   -0.999523   -2.111082
2   -2.197760   -0.412689
3   -0.534728    0.037255

and B is:

    one
0   -1.940326
1   -1.999046
2   -4.395521

A.sub(B) will give you:

     one        two
0    NaN        NaN
1    0.999523   NaN
2    2.197760   NaN
3    NaN        NaN

Or have I misunderstood the question?

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.