diff --git a/Probas.py b/Probas.py index f3ebd2c..12f1529 100755 --- a/Probas.py +++ b/Probas.py @@ -242,6 +242,7 @@ def stats_NFDBP(R, N, t_i): for n in range(N): print("Mean H_{} : {} (variance {})".format(n, mean(H[n]), variance(H[n]))) + # TODO variance for T_k doesn't see right print("Mean T_{} : {} (variance {})".format(k, mean(Sum_T), variance(Sum_T))) # Loi math for u in range(N): @@ -287,6 +288,7 @@ def stats_NFDBP(R, N, t_i): ) ax.legend(loc="upper right", title="Legend") + # TODO fix the graph below # 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])) bx = fig.add_subplot(222)