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
Axis markers are not especially useful for large-magnitude numbers:
xx = rand(1000) ./ sqrt.(rand(1000)) yy = xx.^(-1)*1e-20 scatter(xx,yy)
Matplotlib's native behavior handles this correctly:
import numpy as np from numpy.random import rand import matplotlib.pyplot as plt xx = rand(1000)/np.sqrt(rand(1000)) yy = (1e-20)*1./xx plt.plot(xx, yy, "o")
The text was updated successfully, but these errors were encountered:
Same as #430
Sorry, something went wrong.
Nicely spotted.
Seems fixed.
No branches or pull requests
Axis markers are not especially useful for large-magnitude numbers:
Matplotlib's native behavior handles this correctly:
The text was updated successfully, but these errors were encountered: