(self, other, level=None, fill_value=None, axis: Axis = 0)
| 7177 | |
| 7178 | @Appender(ops.make_flex_doc("sub", "series")) |
| 7179 | def sub(self, other, level=None, fill_value=None, axis: Axis = 0) -> Series: |
| 7180 | return self._flex_method( |
| 7181 | other, operator.sub, level=level, fill_value=fill_value, axis=axis |
| 7182 | ) |
| 7183 | |
| 7184 | subtract = sub |
| 7185 |