# TODO: This cell generates deprecation warning (append is deprecated, use pd.concat instead)
df_annotations = pd.DataFrame()
for index, row in df.iterrows():
s = pd.Series(row.annotations, name=index)
df_annotations = df_annotations.append(s)
Replace with:
df_annotations = pd.DataFrame()
for index, row in df.iterrows():
s = pd.Series(row.annotations, name=index)
df_annotations = pd.concat([df_annotations, s], axis=1)
df_annotations = df_annotations.T
See the cell:
Replace with: