Last active
October 20, 2015 01:13
-
-
Save walterreade/2aa0879f140c94b00653 to your computer and use it in GitHub Desktop.
Standard ML Imports
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
import pandas as pd | |
pd.set_option('display.mpl_style', 'default') | |
pd.set_option('display.width', 200) | |
pd.set_option('display.max_columns', 20) | |
pd.set_option('display.max_rows', 50) | |
pd.set_option('precision', 5) | |
import matplotlib.pyplot as plt | |
import seaborn as sns | |
plt.rcParams['figure.figsize'] = (12., 10.) | |
sns.set() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment