Skip to content

Instantly share code, notes, and snippets.

@gabraganca
Last active December 20, 2015 20:08
Show Gist options
  • Save gabraganca/6187758 to your computer and use it in GitHub Desktop.
Save gabraganca/6187758 to your computer and use it in GitHub Desktop.
Resources for the Ipython notebook
%matplotlib inline
import matplotlib.pyplot as plt
plt.rcParams['figure.figsize'] = 16, 12 # that's default image size for this interactive session
plt.rcParams['figure.dpi'] = 100
plt.rcParams['axes.titlesize'] = 22
plt.rcParams['axes.labelsize'] = 18
plt.rcParams['lines.linewidth'] = 2
plt.rcParams['lines.markersize'] = 8
plt.rcParams['xtick.labelsize'] = 14
plt.rcParams['ytick.labelsize'] = 14
plt.rcParams['legend.fontsize'] = 16
plt.rcParams['legend.fancybox'] = True
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment