Skip to content

Instantly share code, notes, and snippets.

@brianspiering
Last active February 1, 2017 15:42
Show Gist options
  • Select an option

  • Save brianspiering/eb03fdf13799efb44a5f54bbf2de230c to your computer and use it in GitHub Desktop.

Select an option

Save brianspiering/eb03fdf13799efb44a5f54bbf2de230c to your computer and use it in GitHub Desktop.
Jupyter Notebook: IPython kernal defaults
# ~/.ipython/profile_default/startup/start.ipy
# HT: http://people.duke.edu/~ccc14/sta-663-2016/Customizing_Jupyter.html
from functools import reduce, partial
import itertools as it
import glob
import operator as op
import os
import sys
import matplotlib.pyplot as plt
import numpy as np
import pandas as pd
from pandas import DataFrame, Series
import seaborn as sns
sns.set_context("notebook", font_scale=1.5)
%matplotlib inline
clear
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment