Return an Index of values for requested level.
This is primarily useful to get an individual level of values from a MultiIndex, but is provided on Index as well for compatibility.
It is either the integer position or the name of the level.
Calling object, as there is only one level in the Index.
Notes
For Index, level should be 0, since there are no multiple levels.
Examples
>>> idx = pd.Index(list("abc")) >>> idx Index(['a', 'b', 'c'], dtype='object')
Get level values by supplying level as integer:
>>> idx.get_level_values(0) Index(['a', 'b', 'c'], dtype='object')
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