Raises a ValueError for `MultiIndex` because there's no single array backing a MultiIndex. Raises ------ ValueError
(self)
| 753 | |
| 754 | @property |
| 755 | def array(self): |
| 756 | """ |
| 757 | Raises a ValueError for `MultiIndex` because there's no single |
| 758 | array backing a MultiIndex. |
| 759 | |
| 760 | Raises |
| 761 | ------ |
| 762 | ValueError |
| 763 | """ |
| 764 | raise ValueError( |
| 765 | "MultiIndex has no single backing array. Use " |
| 766 | "'MultiIndex.to_numpy()' to get a NumPy array of tuples." |
| 767 | ) |
| 768 | |
| 769 | @cache_readonly |
| 770 | def dtypes(self) -> Series: |
no outgoing calls
no test coverage detected