Convert this variable to a pandas.Index
(self)
| 578 | return self.to_index_variable()._to_index() |
| 579 | |
| 580 | def to_index(self) -> pd.Index: |
| 581 | """Convert this variable to a pandas.Index""" |
| 582 | return self.to_index_variable().to_index() |
| 583 | |
| 584 | def to_dict( |
| 585 | self, data: bool | Literal["list", "array"] = "list", encoding: bool = False |