**Describe the bug** There is a reference to a function display_df(df.T, header=None) but the dsiplay_df function is not defined in the notebook. It needs to perform something like this (or a better-written version of this): def display_df(df, header=True): if header: return df else: df.columns = ["" for col in df.columns] return df