1
0
Fork 0

fix: Fixed plot ylabel for cumulative plots

This commit is contained in:
Benedikt Bastin 2021-02-01 00:04:42 +01:00
parent cb1a497d0b
commit 236fd28c34
1 changed files with 2 additions and 2 deletions

View File

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