pandas.Series.eq

Return Equal to of series and other, element-wise (binary operator eq).

Equivalent to series == other, but with support to substitute a fill_value for missing data in one of the inputs.

param other

Series or scalar value

param fill_value
None or float value, default None (NaN)

Fill existing missing (NaN) values, and any new element needed for successful Series alignment, with this value before computation. If data in both corresponding Series locations is missing the result will be missing.

param level
int or name

Broadcast across a level, matching Index values on the passed MultiIndex level.

return

Series The result of the operation.

Limitations

  • Parameter axis is supported only with default value 0.

  • Parameters level and fill_value are supported only with default value None.

Examples

Element-wise equal of one Series by another (binary operator eq)
import pandas as pd
from numba import njit


@njit
def series_eq():
    s1 = pd.Series([5, 4, 3, 2, 1])
    s2 = pd.Series([0, 2, 3, 6, 8])

    return s1.eq(s2)  # Expect series of False, False, True, False, False


print(series_eq())
$ python ./series/series_mod.py
0    0
1    0
2    0
3    2
4    1
dtype: int64