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

Method array

pandas/core/series.py:829–834  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

827 @Appender(base.IndexOpsMixin.array.__doc__) # type: ignore[prop-decorator]
828 @property
829 def array(self) -> ExtensionArray:
830 arr = self._mgr.array_values()
831 # TODO decide on read-only https://github.com/pandas-dev/pandas/issues/63099
832 # arr = arr.view()
833 # arr._readonly = True
834 return arr
835
836 def __len__(self) -> int:
837 """

Callers 15

setupMethod · 0.45
setupMethod · 0.45
setupMethod · 0.45
libs.pyFile · 0.45
InferDtypeClass · 0.45
TakeClass · 0.45
setupMethod · 0.45
setupMethod · 0.45
setupMethod · 0.45
setupMethod · 0.45
setupMethod · 0.45
setupMethod · 0.45

Calls 1

array_valuesMethod · 0.45