-
-
Notifications
You must be signed in to change notification settings - Fork 7.9k
boxplot() and xticklabels #3563
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
Milestone
Comments
It looks like in if labels is None:
labels = [str(i) for i in range(1, ncols+1)]
elif len(labels) != ncols:
raise ValueError("Dimensions of labels and X must be compatible") Then in the # try to find a new label
datalabels.append(stats.get('label', pos)) |
tacaswell
added a commit
to tacaswell/matplotlib
that referenced
this issue
Sep 25, 2014
If the user does not pass in a label, do not assign one. Fixes matplotlib#3563
Thanks for tracking that down. I have possible fix up. |
Yes, it fixes the problem. |
This issue was closed.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
There's a bug with the xticklabels using boxplot:
With master branch, I see the xticklabels show as "1", "2", "3"
with 1.3.x I see "1000", "1500", "2000" as expected.
[tac edited for markup]
The text was updated successfully, but these errors were encountered: