From 91ba0827e03deb091a682b2babbe3cc52c21fc3f Mon Sep 17 00:00:00 2001 From: Lukas Prause Date: Mon, 10 Jul 2023 17:01:51 +0200 Subject: [PATCH] Adds fancy legend. --- plot_single_transmission_EM9190.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plot_single_transmission_EM9190.py b/plot_single_transmission_EM9190.py index 51538bb..6ef2645 100755 --- a/plot_single_transmission_EM9190.py +++ b/plot_single_transmission_EM9190.py @@ -318,7 +318,7 @@ if __name__ == "__main__": lns_ax0 = snd_plot + srtt_plot + goodput_plot labs_ax0 = [l.get_label() for l in lns_ax0] ax0.legend(lns_ax0, labs_ax0, ncols=9, fontsize=9, loc="upper center") - ax0.set_zorder(100) + #ax0.set_zorder(100) lns_ax00 = eff_bw_plot + lte_eff_bw_plot + nr_eff_bw_plot + lte_rsrq_plot + nr_rsrq_plot if lte_hanover_plot: @@ -327,7 +327,7 @@ if __name__ == "__main__": lns_ax00.append(nr_hanover_plot) labs_ax00 = [l.get_label() for l in lns_ax00] ax00.legend(lns_ax00, labs_ax00, ncols=3, fontsize=9, loc="upper center") - ax00.set_zorder(100) + #ax00.set_zorder(100) plt.savefig("{}{}_plot.eps".format(args.save, csv.replace(".csv", "")), bbox_inches="tight") else: fig.legend(loc="lower right")