Automatic reloading for Jupyter
%load_ext autoreload
%autoreload 2
Setting Pandas display options
To avoid truncation of long DataFrames, you can set the following options:
import pandas as pd
pd.set_option("display.expand_frame_repr", False)
pd.options.display.max_columns = None
pd.options.display.max_rows = None