We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
mpl 1.5.3 and 2.0, py3.6
_xs = np.linspace(-50, 50, 1001); plt.semilogy(scipy.stats.norm.pdf(_xs))
results in where zero values (due to floating point resolution limits, at the edges) get ignored, as expected, but
_xs = np.linspace(-50, 50, 1001); plt.plot(scipy.stats.norm.pdf(_xs)) plt.gcf().canvas.draw() plt.gca().set(yscale="log")
results in the incorrect
The text was updated successfully, but these errors were encountered:
I think this boils down to lines 3241-3242 in axes/_base.py:
if value.lower() == 'log' and 'nonposy' not in kwargs: kwargs['nonposy'] = 'mask'
and is fixed by changing 'mask' to 'clip'.
Working on it now.
Sorry, something went wrong.
Fixed by #8836
Successfully merging a pull request may close this issue.
mpl 1.5.3 and 2.0, py3.6
results in

where zero values (due to floating point resolution limits, at the edges) get ignored, as expected, but
results in the incorrect

The text was updated successfully, but these errors were encountered: