Last active
February 1, 2017 15:42
-
-
Save brianspiering/eb03fdf13799efb44a5f54bbf2de230c to your computer and use it in GitHub Desktop.
Jupyter Notebook: IPython kernal defaults
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
| # ~/.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