pandas.Series.lt

Return Less than of series and other, element-wise (binary operator lt).

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 less than of one Series by another (binary operator lt)
import pandas as pd
from numba import njit


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

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


print(series_lt())
$ python ./series/series_lt.py
0    False
1    False
2    False
3     True
4     True
dtype: bool