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

Method gt

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

Source from the content-addressed store, hash-verified

7103
7104 @Appender(ops.make_flex_doc("gt", "series"))
7105 def gt(self, other, level=None, fill_value=None, axis: Axis = 0) -> Series:
7106 return self._flex_method(
7107 other, operator.gt, level=level, fill_value=fill_value, axis=axis
7108 )
7109
7110 def add(self, other, level=None, fill_value=None, axis: Axis = 0) -> Series:
7111 """

Calls 1

_flex_methodMethod · 0.95