From 236fd28c3454034a534f3b62b946f98eed26be38 Mon Sep 17 00:00:00 2001 From: Benedikt Bastin Date: Mon, 1 Feb 2021 00:04:42 +0100 Subject: [PATCH] fix: Fixed plot ylabel for cumulative plots --- plot.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plot.py b/plot.py index 6e438c3..1b5dde1 100644 --- a/plot.py +++ b/plot.py @@ -492,7 +492,7 @@ def plot_cumulative_two_vaccinations(): ax.get_yaxis().get_major_formatter().set_scientific(False) ax.set_xlabel('Datum') - ax.set_ylabel('Tägliche Impfungen') + ax.set_ylabel('Kumulative Impfungen') plt.savefig(archive_plot_filename + '.pdf') @@ -540,7 +540,7 @@ def plot_cumulative_two_vaccinations_percentage(): ax.yaxis.set_major_formatter(mtick.PercentFormatter(1.0)) ax.set_xlabel('Datum') - ax.set_ylabel('Tägliche Impfungen') + ax.set_ylabel('Kumulative Impfungen') plt.savefig(archive_plot_filename + '.pdf')