staircase.StairsArray.le#
- StairsArray.le(other)#
Binary operator for
staircase.StairsArray
(andpandas.Series
with “Stairs” dtype).Equivalent to self <= other.
- Parameters
- otherint, float,
staircase.Stairs
or array-like of these If array-like must have same length as self.
- otherint, float,
- Returns
See also
Examples
>>> arr = sc.StairsArray([s1,s2])
>>> result = arr <= 0.5
>>> other = sc.StairsArray([s4,s3])
>>> result = arr <= other