Notebook setup
The examples in this chapter will utilize the following configuration of the Python environment:
In [1]: import numpy as np import pandas as pd pd.set_option('display.notebook_repr_html', False) pd.set_option('display.max_columns', 10) pd.set_option('display.max_rows', 8) pd.set_option('precision', 7) import datetime from datetime import datetime import matplotlib.pyplot as plt %matplotlib inline pd.options.display.mpl_style = 'default'