(self, inplace: bool, **kwargs)
| 541 | return self.apply("interpolate", inplace=inplace, **kwargs) |
| 542 | |
| 543 | def pad_or_backfill(self, inplace: bool, **kwargs) -> Self: |
| 544 | return self.apply("pad_or_backfill", inplace=inplace, **kwargs) |
| 545 | |
| 546 | def shift(self, periods: int, fill_value) -> Self: |
| 547 | if fill_value is lib.no_default: |