Last active
August 3, 2019 18:44
-
-
Save davidcorbin/405839b62e36384775b8ad0fb4ac40d4 to your computer and use it in GitHub Desktop.
Setup Jupyter for graphing
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
## Plot theme | |
%matplotlib inline | |
import matplotlib.pyplot as plt | |
plt.style.use('Solarize_Light2') | |
#plt.style.available | |
## High quality plot | |
%config InlineBackend.figure_format = 'svg' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment