-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex_light.html
202 lines (181 loc) · 8.14 KB
/
index_light.html
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
<!doctype html>
<html>
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.min.css" integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" crossorigin="anonymous">
<title>covid19-Italy-stats</title>
</head>
<body>
<nav id="navbar-example2" class="navbar navbar-expand-lg fixed-top navbar-dark bg-dark">
<a class="navbar-brand" href="#">covid19-Italy-stats</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarTogglerDemo02" aria-controls="navbarTogglerDemo02" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarTogglerDemo02">
<ul class="navbar-nav mr-auto mt-2 mt-lg-0">
<li class="nav-item active">
<a class="nav-link" href="#intro">Introduction <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" data-toggle="dropdown" href="#graphs" role="button" aria-haspopup="true" aria-expanded="false">Graphs</a>
<div class="dropdown-menu">
<a class="dropdown-item" href="#1">Daily positives / daily tests</a>
<a class="dropdown-item" href="#two">two</a>
<div role="separator" class="dropdown-divider"></div>
<a class="dropdown-item" href="#three">three</a>
</div>
</li>
</ul>
</div>
</nav>
<br><br><br>
<div class="container" data-spy="scroll" data-target="#navbar-example2">
<div class="row">
<h1 id="intro">Introduction</h1>
</div>
<div class="row">
<p>This page is updated every day, all data are collected from the official <a href="https://github.com/pcm-dpc/COVID-19">Italian repository</a>. This project is born to provide a different data view by different types of data comparison from the usual "daily new positives" graphs that the Italian medias shows.
</p>
<p> I'm not a doctor, nor an expert in virology. I just gather data and plot it.
</p>
<p> Note that the time in the graphs is expressed in number of days from the first day of data analysis, in future i will add date support.
</p>
</div>
<div id="graphs" class="row"><h1>Graphs</h1></div>
<div class="row"><h2 id="1">Daily positives / daily tests</h2></div>
<div class="row">
<div class="col-md-6">
<div class="media">
<img src="imgs/r_positive_test.png" class="img-fluid mr-3" alt="...">
</div>
</div>
<div class="col-md-6">
<h5 class="mt-0">Details</h5>
<p>Describes daily positives over daily tests</p>
</div>
</div>
<div class="row"><h2>Hospitalized / positive</h2></div>
<div class="row">
<div class="col-md-6">
<div class="media">
<img src="imgs/r_ricov_pos.png" class="img-fluid mr-3" alt="...">
</div>
</div>
<div class="col-md-6">
<h5 class="mt-0">Details</h5>
<p>Describes total hospitalized over total positives</p>
</div>
</div>
<div class="row"><h2>Intensive care / hospitalized</h2></div>
<div class="row">
<div class="col-md-6">
<div class="media">
<img src="imgs/r_terapia_ricov.png" class="img-fluid mr-3" alt="...">
</div>
</div>
<div class="col-md-6">
<h5 class="mt-0">Details</h5>
<p>Describes total in intensive care over total hospitalized</p>
</div>
</div>
<div class="row"><h2>Daily recovered / actual positive</h2></div>
<div class="row">
<div class="col-md-6">
<div class="media">
<img src="imgs/r_recovered_positive.png" class="img-fluid mr-3" alt="...">
</div>
</div>
<div class="col-md-6">
<h5 class="mt-0">Details</h5>
<p>Describes total recovered over actual positives</p>
</div>
</div>
<!--
<div class="row"><h2>Daily entered / exited from hospitalization</h2></div>
<div class="row">
<div class="col-md-6">
<div class="media">
<img src="imgs/r_entered_exited_hosp.png" class=" mr-3" alt="...">
</div>
</div>
<div class="col-md-6">
<h5 class="mt-0">Details</h5>
<p>Calculated by new daily hospitalized / daily recovered + daily deaths</p>
</div>
</div>
-->
<div class="row"><h2>Daily recovered / Daily new positives</h2></div>
<div class="row">
<div class="col-md-6">
<div class="media">
<img src="imgs/r_recovered_new_positive.png" class="img-fluid mr-3" alt="...">
</div>
</div>
<div class="col-md-6">
<h5 class="mt-0">Details</h5>
<p>Describes daily recovered over new positives</p>
</div>
</div>
<div class="row"><h2>Deaths / total positives</h2></div>
<div class="row">
<div class="col-md-6">
<div class="media">
<img src="imgs/r_dead_positives.png" class="img-fluid mr-3" alt="...">
</div>
</div>
<div class="col-md-6">
<h5 class="mt-0">Details</h5>
<p>Calculated by daily deaths / toatl positives</p>
</div>
</div>
<div class="row"><h2>Daily New positives / Exited</h2></div>
<div class="row">
<div class="col-md-6">
<div class="media">
<img src="imgs/r_newpositive_recovereddeaths.png" class="img-fluid mr-3" alt="...">
</div>
</div>
<div class="col-md-6">
<h5 class="mt-0">Details</h5>
<p>Calculated by Daily new positives / (Daily recovered + Daily deaths)</p>
</div>
</div>
<div class="row"><h2>Variation of intensive care</h2></div>
<div class="row">
<div class="col-md-6">
<div class="media">
<img src="imgs/var_terapia_intensiva.png" class="img-fluid mr-3" alt="...">
</div>
</div>
<div class="col-md-6">
<h5 class="mt-0">Details</h5>
<p>It's the variation of intensive care between the previous day</p>
</div>
</div>
<div class="row"><h2>Daily covid deaths / "usual" daily deaths</h2></div>
<div class="row">
<div class="col-md-6">
<div class="media">
<img src="imgs/r_deceduticovid_deceduti_norm.png" class="img-fluid mr-3" alt="...">
</div>
</div>
<div class="col-md-6">
<h5 class="mt-0">Details</h5>
<p>Calculated with istat data of daily deaths between 2015 and 2018.</p>
</div>
</div>
</div>
<!-- Optional JavaScript; choose one of the two! -->
<!-- Option 1: jQuery and Bootstrap Bundle (includes Popper) -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-ho+j7jyWK8fNQe+A12Hb8AhRq26LrZ/JpcUGGOn+Y7RsweNrtN/tE3MoK7ZeZDyx" crossorigin="anonymous"></script>
<!-- Option 2: jQuery, Popper.js, and Bootstrap JS
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.1/dist/umd/popper.min.js" integrity="sha384-9/reFTGAW83EW2RDu2S0VKaIzap3H66lZH81PoYlFhbGU+6BZp6G7niu735Sk7lN" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/js/bootstrap.min.js" integrity="sha384-w1Q4orYjBQndcko6MimVbzY0tgp4pWB4lZ7lr30WKz0vr/aWKhXdBNmNb5D92v7s" crossorigin="anonymous"></script>
-->
</body>
</html>