Return (self > other) element-wise. See Also -------- greater
(self, other)
| 2158 | return less_equal(self, other) |
| 2159 | |
| 2160 | def __gt__(self, other): |
| 2161 | """ |
| 2162 | Return (self > other) element-wise. |
| 2163 | |
| 2164 | See Also |
| 2165 | -------- |
| 2166 | greater |
| 2167 | """ |
| 2168 | return greater(self, other) |
| 2169 | |
| 2170 | def __lt__(self, other): |
| 2171 | """ |