-
-
Notifications
You must be signed in to change notification settings - Fork 7.9k
Bug restore boxplot defaults #3165
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
Bug restore boxplot defaults #3165
Conversation
doplot for horizontal boxes (internal bxp helper function) assumes that it will be passed an even number of positional arguments which it swaps pair-wise. The code to draw the fliers also passes in a format string which breaks the assumption. - re-worked how `bxp` deals with the `sym` input - minor pep8
@phobson Can you take a look at this and make sure I didn't muck the defaults up (again). |
Yeah. Btw, the extra props were because the box and whiskers each had different linestyles in the original defaults. -- On Sat, Jun 28, 2014 at 11:31 AM, Thomas A Caswell
|
If the user passes is the string 'ro' assume they want filled circles. This is also the old behavior.
If provided, will set the plotting style of the whiskers | ||
|
||
capprops : dict or None (default) | ||
If provided, will set the plotting style of the whiskers |
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.
I think you mean "caps" here, not "whiskers".
And don't merge this yet, there is still an issue with where the management of the x-ticks |
changed labeling in cbook.box_plotstats to start at 1 to maintain back compatibility
I think this should be good-to-go now. |
re-base + bug fixes
supersedes #3066 closes #3042