Examples
import numpy as np import pandas as pd
s1 = pd.Series([2, np.nan])
s2 = pd.Series([4, 5])
s1.combine_first(s2)
0 2.0 1 5.0 dtype: float64