-
-
Notifications
You must be signed in to change notification settings - Fork 7.9k
axes.boxplot
does not have zorder kwarg
#7171
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
Comments
Use |
Please do not use the issue tracker to ask questions, use mailing list or gitter for this. https://github.com/matplotlib/matplotlib#contact |
thanks a lot! it's very helpful. but it seems the boxplot() doesn't have the zorder argument. So I couldn't set the order of two boxplot? 发自我的小米手机 Use zorder argument in plotting commands, the higher the value, the more on top will be the objects. — |
axes.boxplot
does not have zorder kwarg
re-titled and re-opened, boxplot should take |
@nancysendoh, for your immediate problem, try raising the scatter plot by supplying scatter a "zorder=2.5" kwarg. That will put its patch collection above the Line2D default zorder of 2 that is used by boxplot. |
Thanks a lot~![☺] 发件人: Eric Firing [email protected] @nancysendohhttps://github.com/nancysendoh, for your immediate problem, try raising the scatter plot by supplying scatter a "zorder=2.5" kwarg. That will put its patch collection above the Line2D default zorder of 2 that is used by boxplot. — |
Closing: the |
Hi eveybody,
I want to draw boxplot and scatter in one figure, but the boxplot always covers the points as below:

How could I set the scatter above the boxplot? Thanks ~
Here's my code:
The text was updated successfully, but these errors were encountered: