ソースを参照

Adds fancy legend.

master
Lukas Prause 2年前
コミット
46e8bf95ba
1個のファイルの変更4行の追加2行の削除
  1. +4
    -2
      plot_single_transmission_EM9190.py

+ 4
- 2
plot_single_transmission_EM9190.py ファイルの表示

@@ -317,7 +317,8 @@ if __name__ == "__main__":
# added these three lines
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=4, fontsize=12, loc="upper center")
ax0.legend(lns_ax0, labs_ax0, ncols=9, fontsize=9, loc="upper center")
ax0.set_zoder(100)

lns_ax00 = eff_bw_plot + lte_eff_bw_plot + nr_eff_bw_plot + lte_rsrq_plot + nr_rsrq_plot
if lte_hanover_plot:
@@ -325,7 +326,8 @@ if __name__ == "__main__":
if nr_hanover_plot:
lns_ax00.append(nr_hanover_plot)
labs_ax00 = [l.get_label() for l in lns_ax00]
ax00.legend(lns_ax00, labs_ax00, ncols=4, fontsize=12, loc="upper center")
ax00.legend(lns_ax00, labs_ax00, ncols=3, fontsize=9, loc="upper center")
ax00.set_zoder(100)
plt.savefig("{}{}_plot.eps".format(args.save, csv.replace(".csv", "")), bbox_inches="tight")
else:
fig.legend(loc="lower right")

読み込み中…
キャンセル
保存