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

Method copy

pandas/core/arrays/datetimelike.py:2533–2536  ·  view source on GitHub ↗
(self, order: str = "C")

Source from the content-addressed store, hash-verified

2531 return new_obj
2532
2533 def copy(self, order: str = "C") -> Self:
2534 new_obj = super().copy(order=order)
2535 new_obj._freq = self.freq
2536 return new_obj
2537
2538 def interpolate(
2539 self,

Callers 5

_roundMethod · 0.95
factorizeMethod · 0.95
astypeMethod · 0.45
_accumulateMethod · 0.45
interpolateMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected