diff --git a/plot.py b/plot.py index 5710b55..d47c463 100644 --- a/plot.py +++ b/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)