Skip to content

Instantly share code, notes, and snippets.

@mpharrigan
Last active October 27, 2021 18:02
Show Gist options
  • Save mpharrigan/68526f6499b75c37e48a9d0bc32b5442 to your computer and use it in GitHub Desktop.
Save mpharrigan/68526f6499b75c37e48a9d0bc32b5442 to your computer and use it in GitHub Desktop.
Matplotlib rcParams
%matplotlib inline
from matplotlib import pyplot as plt
import matplotlib
matplotlib.rcParams.update(**{
'axes.titlesize': 14,
'axes.labelsize': 14,
'xtick.labelsize': 12,
'ytick.labelsize': 12,
'legend.fontsize': 12,
'legend.title_fontsize': 12,
'figure.figsize': (7, 5),
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment