-
-
Save stephengruppetta/38d37ce66e9f38918eed533c56e0fd32 to your computer and use it in GitHub Desktop.
This file contains 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.subplot_mosaic( | |
[ | |
["one", "one", "two"], | |
["three", "four", "two"] | |
] | |
) | |
axs["one"].set_title("one") | |
axs["two"].set_title("two") | |
axs["three"].set_title("three") | |
axs["four"].set_title("four") | |
plt.show() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment