pd.Series.le
pandas.Series.le(other, level=None, fill_value=None, axis=0)
Supported Arguments
argument |
datatypes |
other |
- numeric scalar
- array with numeric data
- Series with numeric data
|
fill_value |
numeric scalar |
Note
Series.le
is only supported on Series of numeric data.
Example Usage
>>> @bodo.jit
... def f(S, other):
... return S.le(other)
>>> S = pd.Series(np.arange(1, 1001))
>>> other = pd.Series(reversed(np.arange(1, 1001)))
>>> f(S, other)
0 True
1 True
2 True
3 True
4 True
...
995 False
996 False
997 False
998 False
999 False
Length: 1000, dtype: bool