-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathv5_graph_options.py
66 lines (66 loc) · 2.49 KB
/
v5_graph_options.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
graph_options = {
'incidence hebdo': {
'ymax': 1200,
'minloc': [0, 100, 200, 300, 400, 500, 600, 700, 800, 900, 1000, 1100, 1200, 1300, 1400, 1500, 1600, 1700],
'majloc': [0, 500, 1000, 1500],
'main_color': 'darkturquoise',
'title': 'Cas positifs par semaine,\npour 100 000 habitants',
'fname_extension': 'incidence',
},
'taux de tests hebdo': {
'ymax': 11000,
'majloc': [0, 5000, 10000],
'minloc': [0, 1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000, 11000, 12000],
'main_color': 'gray',
'title': 'Tests pratiqués par semaine,\npour 100 000 habitants',
'fname_extension': 'tests',
},
'taux de positifs hebdo': {
'ymax': 30,
'majloc': [0, 10, 20,],
'minloc': [0, 5, 10, 15, 20, 25],
'main_color': 'olivedrab',
'title': 'Tests positifs,\npour 100 tests\n(moyenne hebdomadaire)',
'fname_extension': 'positivite',
},
'taux hosp': {
'ymax': 379,
'majloc': [0, 100, 200, 300],
'minloc': [0, 50, 100, 150, 200, 250, 300, 350],
'main_color': 'mediumseagreen',
'title': 'Patients hospitalisés,\npour 100 000 habitants',
'fname_extension': 'hosp',
},
'taux rea': {
'ymax': 60,
'majloc': [0, 10, 20, 30, 40, 50],
'minloc': [0, 5, 10, 15, 20, 25, 30, 35, 40, 45, 50, 55,],
'main_color': 'darksalmon',
'title': 'Patients en réanimation,\npour 100 000 habitants',
'fname_extension': 'rea',
},
'taux décès': {
'ymax': 60,
'majloc': [0, 10, 20, 30, 40, 50,],
'minloc': [0, 5, 10, 15, 20, 25, 30, 35, 40, 45, 50, 55],
'main_color': 'orchid',
'title': "Décès à l'hôpital par semaine,\npour 100 000 habitants",
'fname_extension': 'deces',
},
'taux dose 1': {
'ymin': -4, 'ymax': 98,
'minloc': [0, 10, 20, 30, 40, 50, 60, 70, 80, 90],
'majloc': [0, 20, 40, 60, 80],
'main_color': 'silver',
'title': 'Personnes vaccinées,\npour 100 habitants\n(première injection)',
'fname_extension': 'dose1',
},
'taux complet': {
'ymax': 98,
'minloc': [0, 10, 20, 30, 40, 50, 60, 70, 80, 90],
'majloc': [0, 20, 40, 60, 80],
'main_color': 'gold',
'title': 'Personnes vaccinées,\npour 100 habitants\n(vaccination complète)',
'fname_extension': 'vaccin complet',
},
}