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

Method axes

pandas/core/generic.py:622–628  ·  view source on GitHub ↗

Return index label(s) of the internal NDFrame

(self)

Source from the content-addressed store, hash-verified

620
621 @property
622 def axes(self) -> list[Index]:
623 """
624 Return index label(s) of the internal NDFrame
625 """
626 # we do it this way because if we have reversed axes, then
627 # the block manager shows then reversed
628 return [self._get_axis(a) for a in self._AXIS_ORDERS]
629
630 @final
631 @property

Callers

nothing calls this directly

Calls 1

_get_axisMethod · 0.95

Tested by

no test coverage detected