Created
August 9, 2016 16:46
-
-
Save GeauxEric/5a5c1af8e038549a1883a12699313762 to your computer and use it in GitHub Desktop.
modules for data exploration in ipython notebook
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
| %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