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

Method pad_or_backfill

pandas/core/internals/managers.py:543–544  ·  view source on GitHub ↗
(self, inplace: bool, **kwargs)

Source from the content-addressed store, hash-verified

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:

Callers

nothing calls this directly

Calls 1

applyMethod · 0.95

Tested by

no test coverage detected