some_series.update(other_series)
will overwrite all values on some_series
with their matching (by index) values from other_series
. However, it does skip all NA values like None.
What should I use if I want to update some_series
in place from other_series
, but also have the NA values apply?
To clarify, this is what I want:
In [197]: some_series
Out[197]:
0 1
1 2
dtype: int64
In [198]: other_series
Out[198]:
0 None
dtype: object
In [203]: some_series # after overriding it with other_series:
Out[203]:
0 None
1 2
dtype: object