We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Using matplotlib 1.3.1-3, the following code causes my Python kernel to crash.
img = plt.imread("cat.png") fig, ax = plt.subplots(1, 3) ax[0].imshow(img, interpolation='none') ax[0].set_xlim(135,165) # larger than image fig.show()