Try to fix bandwidth ploting.

This commit is contained in:
Lukas Prause
2023-04-24 10:13:15 +02:00
parent 8528f89484
commit dd086d77e0

View File

@@ -161,14 +161,16 @@ if __name__ == "__main__":
ax1.set_ylim(0, 0.3) ax1.set_ylim(0, 0.3)
ax2.set_ylim(0, 500) ax2.set_ylim(0, 500)
ax00.set_ylim(-25, 0) ax00.set_ylim(-25, 0)
ax01.set_ylim(0, 400) ax01.set_ylim(0, 250)
# second dB axis
ax02.set_ylim(-25, 0) ax02.set_ylim(-25, 0)
ax02.set_axis_off()
ax00.set_xlabel("arrival time [s]") ax00.set_xlabel("arrival time [s]")
ax2.set_ylabel("Goodput [mbps]") ax2.set_ylabel("Goodput [mbps]")
ax00.set_ylabel("NR RSRQ [dB]") ax00.set_ylabel("LTE/NR RSRQ [dB]")
ax02.set_ylabel("LTE RSRQ [dB]") #ax02.set_ylabel("LTE RSRQ [dB]")
ax1.set_ylabel("sRTT [s]") ax1.set_ylabel("sRTT [s]")
ax0.set_ylabel("cwnd") ax0.set_ylabel("cwnd")
ax01.set_ylabel("Bandwidth [MHz]") ax01.set_ylabel("Bandwidth [MHz]")