Adding two Series with NaNs

Pandas does not assume that 500+NaN=500, but it is easy to ask it to do that:

a.add(b, fill_value=0)

Leave a Comment