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?
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.
|
|
|
You should be able to simply do A.sub(B). For example:
If A is:
and B is:
A.sub(B) will give you:
Or have I misunderstood the question? |
||||
|
|