Return a tuple of axis dimensions
(self)
| 613 | |
| 614 | @property |
| 615 | def shape(self) -> tuple[int, ...]: |
| 616 | """ |
| 617 | Return a tuple of axis dimensions |
| 618 | """ |
| 619 | return tuple(len(self._get_axis(a)) for a in self._AXIS_ORDERS) |
| 620 | |
| 621 | @property |
| 622 | def axes(self) -> list[Index]: |