-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
ENH: axvlines - boolean option to parallel_coordinates plot #8513
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
ENH: axvlines - boolean option to parallel_coordinates plot #8513
Conversation
Sorry I meant to reply earlier. I'll take a look soonish. I'm a bit hesitant just because our parrallel coordinates habdling isn't the best. But I'll get back on this |
@bjacobowski ok, sorry it took me so long to get to this. Could you post some code with small example of what you were doing? Also a before and after picture would be great. We'll also need a test in That said pandas is trying to move its focus away from plotting since there are so many great python vis libraries. This is so minor that I'm happy to accept it. But if you're interested you could see if seaborn or bokeh or ggplot would accept a PR for parallel coordinate support. |
@TomAugspurger Here's a basic example: |
@TomAugspurger what are we doing with this? |
Let's get it merged with the understanding that any proper implementation of parallel coordinates should go into seaborn or ggplot or bokeh. @bjacobowski would you mind adding a release note to doc/source/whatsnew/v0.15.2? |
@TomAugspurger done |
@bjacobowski can you try to rebase against master and squash this down to one commit. For some reason it's trying to commit the entire whatsnew/v0.15.2.txt. Checkout the wiki or post if you have any trouble. |
dfc63b4
to
b9d2008
Compare
@TomAugspurger that work? |
Perfect. Just going to wait until Travis is green. |
ENH: axvlines - boolean option to parallel_coordinates plot
Thanks @bjacobowski |
Determines whether vertical lines will be added to parallel_coordinates plot. I was using parallel coordinates to make a seasonality chart - plotting years on top of each other (days/months of year on x-axis). With that many xticks, the vertical lines were overwhelming. It's possible to remove the lines after the fact, but without specific line identifiers, it isn't a straight forward process. However, preventing them from being added is a one-liner...