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')