Переглянути джерело

Background color for cell id.

master
Lukas Prause 3 роки тому
джерело
коміт
fce276836a
1 змінених файлів з 2 додано та 1 видалено
  1. +2
    -1
      plot_transmission_timeline.py

+ 2
- 1
plot_transmission_timeline.py Переглянути файл



# rtt cdf # rtt cdf
plt.clf() plt.clf()

print(transmission_df["ack_rtt"]) print(transmission_df["ack_rtt"])
print("Calculate and polt rtt CDF...") print("Calculate and polt rtt CDF...")
plot_cdf(transmission_df, "ack_rtt") plot_cdf(transmission_df, "ack_rtt")
plt.xlabel("ACK RTT [s]") plt.xlabel("ACK RTT [s]")
plt.ylabel("CDF") plt.ylabel("CDF")
plt.yscale("log")
plt.xscale("log")
plt.legend([cc_algo]) plt.legend([cc_algo])
plt.title("{} with {}".format(transmission_direction, cc_algo)) plt.title("{} with {}".format(transmission_direction, cc_algo))



Завантаження…
Відмінити
Зберегти