diff --git a/doubling_time.py b/doubling_time.py index ce4c6d3..5892fdb 100644 --- a/doubling_time.py +++ b/doubling_time.py @@ -16,7 +16,7 @@ def plot(data, countries, pop): time, new_cases, new_deaths, total_cases, total_deaths = data[loc] pp.figure(name, figsize=figsize) - window_size = 3 + window_size = 7 tchar = moving_average(np.array(new_cases),window_size)/moving_average(np.array(total_cases),window_size) thalf = np.log(2)/tchar day_of_100_cases = np.argwhere(np.array(total_cases) > 99)[0][0] diff --git a/index.html b/index.html index 179e680..ba6e0ee 100644 --- a/index.html +++ b/index.html @@ -330,7 +330,7 @@ Aktuelle Daten aus Deutschland mit vielen Hintergründen finden sich im Verdopplungszeit - Verdopplungszeit mit einem gleitenden Mittelwert von 3 Tagen. + Verdopplungszeit mit einem gleitenden Mittelwert von 7 Tagen.