Created
October 20, 2019 18:34
-
-
Save tldrafael/edef903680fe73597f8b3dfa122f5c44 to your computer and use it in GitHub Desktop.
Plotting subplots snippet
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import matplotlib.pyplot as plt | |
fig, axs = plt.subplots(4, figsize=(12, 12)) | |
for i in range(4): | |
axs[i].imshow(sample_masks[:, :, i]) | |
axs[i].axis('off') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment