-
-
Notifications
You must be signed in to change notification settings - Fork 7.9k
ENH: plotting methods can unpack labeled data [MOVED TO #4829] #4787
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
Closed
Closed
Changes from 1 commit
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
1e21903
ENH: plotting methods can unpack labeled data
tacaswell 1cf0f38
ENH: Make implicit x in plot pandas aware
tacaswell 676eeb4
ENH: add white-list of args/kwargs to relpace
tacaswell 9e6e7b4
MNT: remove unused rcparam
tacaswell 5ace465
MNT: python 2.6 does not support set literals
tacaswell e90d859
ENH: pass at decorator which extracts a label
tacaswell 6646545
FIX: fix typo, slightly rename variables
tacaswell 4059b44
FIX: fix yet more typos
tacaswell 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
Prev
Previous commit
FIX: fix yet more typos
- Loading branch information
commit 4059b448666c63b6b532f93ccde3043f60fd8e3c
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
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 doesn't check against the case that a user called the function with args alone (aka: the new label is in args). Not sure how frequent that is...
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.
Good point, but I am not super worried about that in this case because in order for this code path to be hit they have to be using the
data
kwarg so we won't break un-touched user code.Some of the methods take
label
as an explicit input, but many take it through a blind**kwargs
. I suspect that we will have to inspectfunc
on the way in.