From 8b0e5d4c1100fa7809da0b87beee33fab11330fd Mon Sep 17 00:00:00 2001 From: Phil Elson Date: Fri, 6 Nov 2020 17:57:14 +0100 Subject: [PATCH] Update the xaxis label to hour of day. --- cara/apps/calculator/report_generator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cara/apps/calculator/report_generator.py b/cara/apps/calculator/report_generator.py index 573f8bb0..b47dd0d3 100644 --- a/cara/apps/calculator/report_generator.py +++ b/cara/apps/calculator/report_generator.py @@ -59,7 +59,7 @@ def plot(times, concentrations): ax.spines['right'].set_visible(False) ax.spines['top'].set_visible(False) - ax.set_xlabel('Hours from start of event') + ax.set_xlabel('Time (hour of day)') ax.set_ylabel('Concentration ($q/m^3$)') ax.set_title('Concentration of infectious quanta')