Notebook setup
To utilize the examples in this chapter, we will need to include the following imports and settings in either your IPython or IPython Notebook environment, as shown here:
In [1]: import pandas as pd import numpy as np import datetime import matplotlib.pyplot as plt %matplotlib inline pd.set_option('display.notebook_repr_html', False) pd.set_option('display.max_columns', 15) pd.set_option('display.max_rows', 8) pd.set_option('precision', 3)