Created
July 7, 2020 17:33
-
-
Save blaylockbk/a994bd63e2cd66ac5ddc6de57db11a5c 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
# For overlaying two colorbars on the same figure | |
plt.rcParams['hatch.color'] = (1, 1, 1, .33) | |
plt.rcParams['hatch.linewidth'] = 8 | |
plt.bar([1,2], [2,5], color='.1', label='first') | |
plt.bar([1,2], [3,4], hatch='/', alpha=.33, color='g', label='second') | |
plt.legend() |
Author
blaylockbk
commented
Jul 7, 2020
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment