Skip to content

Instantly share code, notes, and snippets.

@maurapintor
Created May 2, 2022 12:53
Show Gist options
  • Save maurapintor/7392250de90c755111046b90f30ff3a9 to your computer and use it in GitHub Desktop.
Save maurapintor/7392250de90c755111046b90f30ff3a9 to your computer and use it in GitHub Desktop.
The settings that I like for figures :D
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