Browse Source

Changes scaleing.

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

+ 2
- 1
cdf_compare.py View File

for i in range(1, len(transmission_df_list)): for i in range(1, len(transmission_df_list)):
plot_cdf(transmission_df_list[i]["df"], "srtt", axis=plt.gca()) plot_cdf(transmission_df_list[i]["df"], "srtt", axis=plt.gca())
legend.append(transmission_df_list[i]["cc_algo"]) legend.append(transmission_df_list[i]["cc_algo"])
plt.xscale("log")
#plt.xscale("log")
plt.xlim(0, 0.15)
plt.xlabel("sRTT [s]") plt.xlabel("sRTT [s]")
plt.ylabel("CDF") plt.ylabel("CDF")
plt.legend(legend) plt.legend(legend)

Loading…
Cancel
Save