Browse Source

Changes goodpit calculation.

master
Lukas Prause 2 years ago
parent
commit
f650d98eb5
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      cdf_compare.py

+ 2
- 2
cdf_compare.py View File

@@ -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")

Loading…
Cancel
Save