fix: better legend placement on graphs

This commit is contained in:
Paul ALNET 2023-06-04 08:39:29 +02:00
parent 316c910c3a
commit 6cd6df4b89

View file

@ -285,7 +285,7 @@ def stats_NFDBP(R, N, t_i):
P P
) )
) )
ax.legend(loc="upper left", title="Legend") ax.legend(loc="upper right", title="Legend")
# Mathematical P(Ti=k) plot. It shows the Ti(t_i) law with the probability of each number of items. # Mathematical P(Ti=k) plot. It shows the Ti(t_i) law with the probability of each number of items.
print(len(Tk[t_i])) print(len(Tk[t_i]))
@ -310,7 +310,7 @@ def stats_NFDBP(R, N, t_i):
bx.set_title( bx.set_title(
"T{} histogram for {} items (Number of items in each bin)".format(t_i, P) "T{} histogram for {} items (Number of items in each bin)".format(t_i, P)
) )
bx.legend(loc="upper left", title="Legend") bx.legend(loc="upper right", title="Legend")
# Loi mathematique # Loi mathematique
print(T_maths) print(T_maths)
@ -333,7 +333,7 @@ def stats_NFDBP(R, N, t_i):
cx.set_ylabel("P(T{}=i)".format(t_i)) cx.set_ylabel("P(T{}=i)".format(t_i))
cx.set_xlabel("Bins i=(1-{})".format(N)) cx.set_xlabel("Bins i=(1-{})".format(N))
cx.set_title("Theoretical T{} values in %".format(t_i)) cx.set_title("Theoretical T{} values in %".format(t_i))
cx.legend(loc="upper left", title="Legend") cx.legend(loc="upper right", title="Legend")
plt.show() plt.show()