fix: Removed debug print statements
This commit is contained in:
parent
6e93557250
commit
0b2b13b07b
1 changed files with 0 additions and 5 deletions
5
plot.py
5
plot.py
|
@ -356,11 +356,6 @@ def plot_vaccination_bar_graph_total_time_by_week():
|
|||
f = list(data_first_vaccination['vaccinations_by_week'].values())
|
||||
s = list(data_second_vaccination['vaccinations_by_week'].values())
|
||||
|
||||
for d, v in zip(w, s):
|
||||
print(f"{d}: {v}")
|
||||
|
||||
print(type(w[0]), type(f[0]))
|
||||
|
||||
bar1 = ax.bar(w, f, label='Wöchentliche Erstimpfungen', color='blue', width=6.8)
|
||||
bar2 = ax.bar(w, s, label='Wöchentliche Zweitimpfungen', color='lightblue', width=6.8, bottom=f)
|
||||
|
||||
|
|
Loading…
Reference in a new issue