import pandas as pd
import numpy as np
# TSA from Statsmodelsimport statsmodels.api as sm
import statsmodels.formula.api as smf
import statsmodels.tsa.api as smt
# Display and Plottingimport matplotlib.pylab as plt
import seaborn as sns
pd.set_option('display.float_format',lambda x:'%.5f'% x)# pandas
np.set_printoptions(precision=5, suppress=True)# numpy
pd.set_option('display.max_columns',100)
pd.set_option('display.max_rows',100)# seaborn plotting style
sns.set(style='ticks', context='poster')