From f650d98eb57eb31d0662f82d720fbc6ae2b3c520 Mon Sep 17 00:00:00 2001 From: Lukas Prause Date: Tue, 25 Apr 2023 14:22:40 +0200 Subject: [PATCH] Changes goodpit calculation. --- cdf_compare.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cdf_compare.py b/cdf_compare.py index 7fef12b..d758165 100755 --- a/cdf_compare.py +++ b/cdf_compare.py @@ -216,10 +216,10 @@ if __name__ == "__main__": # Plot goodput CDF legend = list() - plot_cdf(transmission_df_list[0]["df"], "goodput") + plot_cdf(transmission_df_list[0]["df"], "goodput_rolling") legend.append(transmission_df_list[0]["cc_algo"]) for i in range(1, len(transmission_df_list)): - plot_cdf(transmission_df_list[i]["df"], "goodput", axis=plt.gca()) + plot_cdf(transmission_df_list[i]["df"], "goodput_rolling", axis=plt.gca()) legend.append(transmission_df_list[i]["cc_algo"]) plt.xlabel("goodput [mbps]") plt.ylabel("CDF")