(self, expr_cls, other, level, fill_value, axis)
| 4225 | return new_collection(expr.ToFrame(self, name=name)) |
| 4226 | |
| 4227 | def _comparison_op(self, expr_cls, other, level, fill_value, axis): |
| 4228 | if level is not None: |
| 4229 | raise NotImplementedError("level must be None") |
| 4230 | self._validate_axis(axis) |
| 4231 | return new_collection(expr_cls(self, other, fill_value=fill_value)) |
| 4232 | |
| 4233 | def lt(self, other, level=None, fill_value=None, axis=0): |
| 4234 | return self._comparison_op(expr.LTSeries, other, level, fill_value, axis) |
no test coverage detected