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

Method _with_freq

pandas/core/indexes/datetimelike.py:617–619  ·  view source on GitHub ↗
(self, freq)

Source from the content-addressed store, hash-verified

615 return type(self)._simple_new(arr, name=self.name)
616
617 def _with_freq(self, freq):
618 arr = self._data._with_freq(freq)
619 return type(self)._simple_new(arr, name=self._name)
620
621 @property
622 def values(self) -> np.ndarray:

Callers 4

maybe_coerce_valuesFunction · 0.45
_get_indexer_strictMethod · 0.45
_intersectionMethod · 0.45
_unionMethod · 0.45

Calls 1

_simple_newMethod · 0.45

Tested by

no test coverage detected