pandas.Series.combine_first#

Series.combine_first(other)[源代码][源代码]#

使用 ‘other’ 中相同位置的值更新空元素。

将两个 Series 对象合并,通过将一个 Series 中的空值填充为另一个 Series 中的非空值。结果索引将是两个索引的并集。

参数:
其他系列

用于填充空值的值。

返回:
系列

将提供的 Series 与其他对象组合的结果。

参见

Series.combine

使用给定的函数对两个系列执行元素级操作。

例子

>>> s1 = pd.Series([1, np.nan])
>>> s2 = pd.Series([3, 4, 5])
>>> s1.combine_first(s2)
0    1.0
1    4.0
2    5.0
dtype: float64

如果 other 中不存在该空值的位置,空值仍然会保留。

>>> s1 = pd.Series({"falcon": np.nan, "eagle": 160.0})
>>> s2 = pd.Series({"eagle": 200.0, "duck": 30.0})
>>> s1.combine_first(s2)
duck       30.0
eagle     160.0
falcon      NaN
dtype: float64