df = pd.read_csv(
"./campaigns/ucdavis-icdm19/xgboost/noaugmentation-flowpic/campaign_summary/noaugmentation-flowpic/summary_flowpic_dim_32.csv",
header=[0, 1],
index_col=[0, 1],
)
# reformatting
df_tmp = df["acc"][["mean", "ci95"]].round(2)
df_tmp.loc[["test-script", "test-human"]].droplevel(1, axis=0).astype(float).round(2)
df = pd.read_csv(
"./campaigns/ucdavis-icdm19/xgboost/noaugmentation-timeseries/campaign_summary/noaugmentation-timeseries/summary_max_n_pkts_10.csv",
header=[0, 1],
index_col=[0, 1],
)
# reformatting
df_tmp = df["acc"][["mean", "ci95"]].round(2)
df_tmp.loc[["test-script", "test-human"]].droplevel(1, axis=0).astype(float).round(2)