Last active
December 20, 2015 20:08
-
-
Save gabraganca/6187758 to your computer and use it in GitHub Desktop.
Resources for the Ipython notebook
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
%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