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, both indexed by timeseries. I need to add the elements together to form a new dataframe, but only if the index and column are the same. If the item does not exist in one of the dataframes then it should be treated as a zero.

I've tried using .add but this sums regardless of index and column. Also tried a simple combined_data = dataframe1 + dataframe2 but this give a NaN if both dataframes don't have the element.

Any suggestions?

Thanks

share|improve this question
Can you clarify what you want to happen if an item does not exist in one or both dataframes? You say if the item does not exist in one dataframe, it should be treated as zero --- do you mean the value in that dataframe should be treated as zero and added to the value from the other dataframe, or do you mean the value in the result dataframe should be zero? Also, you say df1+df2 doesn't work because it gives NaN if both don't have the element. What do you want to happen in this case? You want a zero in the result? – BrenBarn Jun 19 '12 at 18:44

2 Answers

up vote 5 down vote accepted

How about x.add(y, fill_value=0)?

share|improve this answer
Perfect, just what I was after. Thanks – cs0679 Jun 20 '12 at 10:53

If I understand you correctly, you want something like:

(x.reindex_like(y).fillna(0) + y.fillna(0)).fillna(0)

This will give the sum of the two dataframes. If a value is in one dataframe and not the other, the result at that position will be that existing value. If a value is missing in both dataframes, the result at that position will be zero.

>>> x
   A   B   C
0  1   2 NaN
1  3 NaN   4
>>> y
    A   B   C
0   8 NaN  88
1   2 NaN   5
2  10  11  12
>>> (x.reindex_like(y).fillna(0) + y.fillna(0)).fillna(0)
    A   B   C
0   9   2  88
1   5   0   9
2  10  11  12
share|improve this answer
Thanks, but I didn't explain my data very well as I have different columns in both DataFrames e.g. A, B, C in dataframe1 and A, B, D in dataframe 2. The output should be a dataframe with A, B, C, D – cs0679 Jun 20 '12 at 10:56

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.