Created
January 23, 2016 12:25
-
-
Save lucidfrontier45/dd104e8d327379dbb606 to your computer and use it in GitHub Desktop.
Jupyter Notebook Header with Numpy, Pandas and Matplotlib Support
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
%matplotlib inline | |
import numpy as np | |
import pandas as pd | |
from matplotlib import pyplot as plt | |
plt.style.use("ggplot") | |
plt.rcParams["font.size"] = 13 | |
plt.rcParams["figure.figsize"] = 10, 8 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment