Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import matplotlib.pyplot as plt
- fig, ax = plt.subplots(1,2)
- data = plt.imread('http://via.placeholder.com/350x150')
- ax[0].imshow(data)
- ax[0].axis('off')
- ax[1].imshow(data)
- plt.show()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement