From b7f69498eee40b39e2be26cb0265740419b73d7d Mon Sep 17 00:00:00 2001 From: Quentin Legot Date: Fri, 7 Apr 2023 10:31:29 +0200 Subject: [PATCH] Delete data after processing, using less memory --- plot/main.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plot/main.py b/plot/main.py index 8d7118f..f015326 100644 --- a/plot/main.py +++ b/plot/main.py @@ -57,6 +57,8 @@ delays.sort(axis=0) # Data for plotting averages.sort(axis=0) +del np_arr + fig, ax = plt.subplots(2, 2) ax[0, 0].scatter(averages[:, 0], averages[:, 1]) ax[0, 0].set(xlabel='number of users', ylabel='Efficacité spectrale', title='Efficacité spectrale')