Last active
August 29, 2015 14:06
-
-
Save ghl3/51f8b38bd02770bdf965 to your computer and use it in GitHub Desktop.
iPython Notebook Common Headers
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
from __future__ import division | |
%matplotlib inline | |
import numpy as np | |
import pandas as pd | |
pd.set_option('display.max_rows', 500) | |
pd.set_option('display.max_columns', 500) | |
import matplotlib.pyplot as plt |
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
# Auto Import | |
%load_ext autoreload | |
%autoreload 1 | |
%aimport bamboo | |
%aimport bamboo.core | |
%aimport bamboo.BambooObjects |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment