X-Git-Url: https://plomlompom.com/repos/?p=berlin-corona-table;a=blobdiff_plain;f=enhance_table.py;fp=enhance_table.py;h=3e36e0e40d0dc51913ef55d0f5d4ef8fe1434c9f;hp=4ce77925c91c985d1bfb177cb0d7ac5694d2d690;hb=b80b98afa99c2d7c406673f3318538828b6a4819;hpb=f91a74c7aa31a742e50629e4e57736cf5192320d diff --git a/enhance_table.py b/enhance_table.py index 4ce7792..3e36e0e 100755 --- a/enhance_table.py +++ b/enhance_table.py @@ -253,13 +253,13 @@ HTML view: https://plomlompom.com/berlin_corona.html weekly_sums = [] weekly_avgs = [] weekly_incs = [] - for district in sorted_districts[:-1]: + for district in sorted_districts[1:]: weekly_sums += [db[district][week_start_date]['week_sum']] weekly_avgs += [db[district][week_start_date]['week_average']] weekly_incs += [db[district][week_start_date]['week_incidence']] print() print('district stats for week from %s to %s:' % (date, week_start_date)) - print(' '*7, ' '.join(sorted_districts[:-1])) + print(' '*7, ' '.join(sorted_districts[1:])) print('wsum', ' '.join(['%5.1f' % wsum for wsum in weekly_sums])) print('wavg', ' '.join(['%5.1f' % wavg for wavg in weekly_avgs])) print('winc', ' '.join(['%5.1f' % winc for winc in weekly_incs]))