Created
October 12, 2023 12:44
-
-
Save rawlik/6d8a7496d7b59c0630cb58f73bd63d29 to your computer and use it in GitHub Desktop.
matplotlib.py
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
plt.rcParams["figure.dpi"] = 140 | |
plt.rcParams["axes.spines.right"] = False | |
plt.rcParams["axes.spines.top"] = False | |
plt.rcParams["legend.frameon"] = False | |
# Okabe-Ito palette | |
plt.rcParams['axes.prop_cycle'] = plt.cycler(color=["#000000", "#E69F00", "#56B4E9", "#009E73", "#F0E442", "#0072B2", "#D55E00", "#CC79A7"]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment