Created
May 2, 2022 12:53
-
-
Save maurapintor/7392250de90c755111046b90f30ff3a9 to your computer and use it in GitHub Desktop.
The settings that I like for figures :D
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 seaborn as sns | |
import matplotlib.pyplot as plt | |
sns.set_style('whitegrid') | |
plt.rc('axes', titlesize=18) | |
plt.rc('axes', labelsize=14) | |
plt.rc('xtick', labelsize=13) | |
plt.rc('ytick', labelsize=13) | |
plt.rc('legend', fontsize=13) | |
plt.rc('font', size=13) | |
plt.rc('text', usetex=True) | |
sns.color_palette('deep') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment