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
When trying to call imshow with Matplotlib3.0, I get
imshow
--------------------------------------------------------------------------- AttributeError Traceback (most recent call last) <ipython-input-113-7e66688e4419> in <module> 33 ax = fig.add_subplot(111) ---> 34 im = imshow(ax, z) 35 cb = plt.colorbar(im) 36 cb.ax.set_ylabel("Counts") ~/software/miniconda3/lib/python3.7/site-packages/modest_image/modest_image.py in imshow(axes, X, cmap, norm, aspect, interpolation, alpha, vmin, vmax, origin, extent, shape, filternorm, filterrad, imlim, resample, url, **kwargs) 211 Unlike matplotlib version, must explicitly specify axes 212 """ --> 213 if not axes._hold: 214 axes.cla() 215 if norm is not None: AttributeError: 'AxesSubplot' object has no attribute '_hold'
Apparently, hold has been removed from Matplotlib: https://stackoverflow.com/questions/53957042/attributeerror-axessubplot-object-has-no-attribute-hold
hold
The text was updated successfully, but these errors were encountered:
This one: #12 Solves your issue.
Sorry, something went wrong.
No branches or pull requests
When trying to call
imshow
with Matplotlib3.0, I getApparently,
hold
has been removed from Matplotlib: https://stackoverflow.com/questions/53957042/attributeerror-axessubplot-object-has-no-attribute-holdThe text was updated successfully, but these errors were encountered: