-
-
Notifications
You must be signed in to change notification settings - Fork 18.5k
DOC: add documentation to IndexSlice #15623
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 4 commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
566d3c5
Add documentation Class IndexSlice
jdcla b018440
Add IndexSlice to api.rst
jdcla 33c473a
fixes
jdcla f3f8c86
fix
jdcla cd0845b
change miindex to midx
jdcla c06bd72
cleaner code example IndexSlice
jdcla 98067ed
further cleanup
jdcla 7a318d0
latest fix
jorisvandenbossche File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -43,7 +43,37 @@ def get_indexers_list(): | |
|
||
# the public IndexSlicerMaker | ||
class _IndexSlice(object): | ||
|
||
""" | ||
Create an object to more easily perform multi-index slicing | ||
|
||
Examples | ||
-------- | ||
|
||
>>> miindex = pd.MultiIndex.from_product([['A0','A1'],['B0','B1','B2','B3']]) | ||
>>> columns = ['foo','bar'] | ||
>>> dfmi = pd.DataFrame(np.arange(16).reshape((len(miindex),len(columns))), | ||
index=miindex,columns=columns) | ||
|
||
Using the default slice command: | ||
|
||
>>> dfmi.loc[(slice(None),slice('B0','B1')),:] | ||
foo bar | ||
A0 B0 0 1 | ||
B1 2 3 | ||
A1 B0 8 9 | ||
B1 10 11 | ||
|
||
Using the IndexSlice class for a more intuitive command: | ||
|
||
>>> idx = pd.IndexSlice | ||
>>> dfmi.loc[idx[:,['B0','B1']],:] | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. To be fully equivalent to the one above, the |
||
foo bar | ||
A0 B0 0 1 | ||
B1 2 3 | ||
A1 B0 8 9 | ||
B1 10 11 | ||
""" | ||
|
||
def __getitem__(self, arg): | ||
return arg | ||
|
||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This line is too long. But you can rename the
miindex
to egmidx
, then it should fit :-)