pandas.Series.ne¶
Return Not equal to of series and other, element-wise (binary operator ne).
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 value0
.Parameters
level
andfill_value
are supported only with default valueNone
.
Examples¶
import pandas as pd
from numba import njit
@njit
def series_ne():
s1 = pd.Series([5, 4, 3, 2, 1])
s2 = pd.Series([0, 2, 3, 6, 8])
return s1.ne(s2) # Expect series of True, True, False, True, True
print(series_ne())
$ python ./series/series_ne.py
0 True
1 True
2 False
3 True
4 True
dtype: bool