Created
January 24, 2019 21:43
-
-
Save yrevar/315d6456195e576c16e384921e41af46 to your computer and use it in GitHub Desktop.
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 os | |
import numpy as np | |
import matplotlib.pyplot as plt | |
%matplotlib inline | |
import matplotlib as mpl | |
# plot title | |
mpl.rcParams['axes.titlesize'] = 18 | |
# axes labels | |
mpl.rcParams['axes.labelsize'] = 14 | |
mpl.rcParams['axes.grid'] = False | |
mpl.rcParams['image.interpolation'] = 'nearest' | |
mpl.rcParams['figure.figsize'] = 15, 55 | |
%matplotlib inline | |
%load_ext autoreload | |
%autoreload 2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment