MCPcopy
hub / github.com/pandas-dev/pandas / lt

Method lt

pandas/core/series.py:7030–7033  ·  view source on GitHub ↗
(self, other, level=None, fill_value=None, axis: Axis = 0)

Source from the content-addressed store, hash-verified

7028
7029 @Appender(ops.make_flex_doc("lt", "series"))
7030 def lt(self, other, level=None, fill_value=None, axis: Axis = 0) -> Series:
7031 return self._flex_method(
7032 other, operator.lt, level=level, fill_value=fill_value, axis=axis
7033 )
7034
7035 def ge(self, other, level=None, fill_value=None, axis: Axis = 0) -> Series:
7036 """

Callers 1

_wrap_idxmax_idxminMethod · 0.45

Calls 1

_flex_methodMethod · 0.95

Tested by

no test coverage detected