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


df1+df2doesn'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