Skip to content

Instantly share code, notes, and snippets.

@GeauxEric
Created August 9, 2016 16:46
Show Gist options
  • Select an option

  • Save GeauxEric/5a5c1af8e038549a1883a12699313762 to your computer and use it in GitHub Desktop.

Select an option

Save GeauxEric/5a5c1af8e038549a1883a12699313762 to your computer and use it in GitHub Desktop.
modules for data exploration in ipython notebook
%load_ext autoreload
%autoreload 2
%matplotlib inline
%config InlineBackend.figure_format='retina'
# Add this to python2 code to make life easier
from __future__ import absolute_import, division, print_function
from itertools import combinations
import string
from IPython.display import IFrame, HTML, YouTubeVideo
import matplotlib.pyplot as plt
import numpy as np
import pandas as pd
import scipy as sp
import seaborn as sns
sns.set();
plt.rcParams['figure.figsize'] = (12, 8)
sns.set_style("darkgrid")
sns.set_context("poster", font_scale=1.3)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment