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

Method view

pandas/tests/extension/date/array.py:170–171  ·  view source on GitHub ↗
(self, dtype: Dtype | None = None)

Source from the content-addressed store, hash-verified

168 return DateArray((self._year.copy(), self._month.copy(), self._day.copy()))
169
170 def view(self, dtype: Dtype | None = None) -> DateArray:
171 return DateArray((self._year.view(), self._month.view(), self._day.view()))
172
173 def isna(self) -> np.ndarray:
174 return np.logical_and(

Calls 1

DateArrayClass · 0.85