-
-
Notifications
You must be signed in to change notification settings - Fork 7.9k
Histogram with histtype='step' dows not respect lines.linewidth #4065
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
This is because hist use a I would suggest not using vals, bins = np.histogram(..)
ax.step(bins[:-1], vals, where='post') which should be aware of that rcparam. |
Ah ok. So it does respect |
I would like to suggest switching to using |
@anntzer No, because then the return typo of |
Fair enough, reopened on seaborn's side as mwaskom/seaborn#704. |
Reporting an idea that had been shot down on seaborn's side: |
👎 on that from me as well. If something like that were to happen, the right place would be for seaborn to wrap hist and then use the style context manager to locally over-ride the rcparams. |
hist with
histtype=step
ignores thelines.linewidth
rcParam.The text was updated successfully, but these errors were encountered: