A multi-level, or hierarchical, index object for pandas objects.
The unique labels for each level.
Integers for each level designating which label at each location.
Level of sortedness (must be lexicographically sorted by that level).
Names for each of the index levels. (name is accepted for compat).
Copy the meta-data.
Kept for compatibility with 1-dimensional Index. Should not be used.
Check that the levels/codes are consistent and valid.
Attributes
Methods
Notes
See the user guide for more.
Examples
A new MultiIndex
is typically constructed using one of the helper methods MultiIndex.from_arrays()
, MultiIndex.from_product()
and MultiIndex.from_tuples()
. For example (using .from_arrays
):
>>> arrays = [[1, 1, 2, 2], ["red", "blue", "red", "blue"]] >>> pd.MultiIndex.from_arrays(arrays, names=("number", "color")) MultiIndex([(1, 'red'), (1, 'blue'), (2, 'red'), (2, 'blue')], names=['number', 'color'])
See further examples for how to construct a MultiIndex in the doc strings of the mentioned helper methods.
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4