Skip to content

Instantly share code, notes, and snippets.

@walterreade
Last active October 20, 2015 01:13
Show Gist options
  • Save walterreade/2aa0879f140c94b00653 to your computer and use it in GitHub Desktop.
Save walterreade/2aa0879f140c94b00653 to your computer and use it in GitHub Desktop.
Standard ML Imports
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