From 05c816c6ba2dd3ad7ff55827800f154c4003621e Mon Sep 17 00:00:00 2001 From: Nadine Fischer Date: Sun, 5 Nov 2023 15:04:54 -0700 Subject: [PATCH] Units in axes --- make_plot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/make_plot.py b/make_plot.py index 93ab2ec..3052853 100644 --- a/make_plot.py +++ b/make_plot.py @@ -22,7 +22,7 @@ pyplot.legend(['Column 200', 'Mean']) pyplot.title('Plot of Column 200 Values and Mean') pyplot.xlabel('Pixels') -pyplot.ylabel('Intensity') +pyplot.ylabel('Intensity [unit]') pyplot.figure() pyplot.plot(np.arange(1024), col3) mean = np.mean(col3)