-
Notifications
You must be signed in to change notification settings - Fork 1
/
category-all.html
332 lines (284 loc) · 14.3 KB
/
category-all.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
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title> All
| OSCOVIDA: Open Science COVID Analysis</title>
<meta name="author" content="OSCOVIDA team"/>
<!-- Bootstrap -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/css/bootstrap.min.css"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/magnific-popup.js/1.1.0/magnific-popup.min.css"/>
<link rel="stylesheet" href="https://cdn.datatables.net/1.10.20/css/jquery.dataTables.min.css">
<link rel="stylesheet" href="./theme/css/jquery.mglass.css"/>
<link rel="stylesheet" href="./theme/css/pygment-solarized-dark.css"/>
<!-- <link rel="stylesheet" href="./theme/css/style.css"/> -->
<link rel="stylesheet" href="./theme/css/minimalist-style.css"/>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script>
<script src="https://cdn.datatables.net/1.10.20/js/jquery.dataTables.min.js"></script>
<script type="text/javascript" class="init">
$(document).ready(function() {
$('#data_table').DataTable( {
"rowCallback": function( row, data, index ) {
if ( data[4] == "True" ) // 4th column is a flag to set the colour red
{
$('td', row).css('background-color', 'LightPink');
}
},
"order": [[ 3, "desc" ]],
"lengthMenu": [[10, 25, 50, 500, -1], [10, 25, 50, 500, "All"]],
"pageLength": -1,
"columnDefs": [
{ "type": "string", "targets": 0 },
{ "type": "num-fmt", "targets": "_all" },
{ "visible": false, "targets": [ 4 ] } // hide flag column
]
} );
} );
</script>
<!-- Fonts -->
<link href='https://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'/>
<link href='https://fonts.googleapis.com/css?family=Istok+Web' rel='stylesheet' type='text/css'/>
<link href='https://fonts.googleapis.com/css?family=Droid+Sans+Mono' rel='stylesheet' type='text/css'/>
<link rel="icon" href="./favicon.ico" type="image/x-icon">
<link rel="shortcut icon" href="./favicon.ico" type="image/x-icon">
<!-- Feeds -->
<link href="https://oscovida.github.io/feeds/all.atom.xml" type="application/atom+xml" rel="alternate" title="OSCOVIDA: Open Science COVID Analysis - All posts - Atom Feed"/>
</head>
<body>
<div class="container">
<div class="page-header">
<h1><a href=".">OSCOVIDA: Open Science COVID Analysis</a> <small></small></h1>
</div>
<nav class="navbar navbar-default">
<!-- Hamburger menu for mobile -->
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#plumage-navbar-collapse-1" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="." title="">OSCOVIDA: Open Science COVID Analysis</a>
</div>
<!-- Menus and search forms -->
<div class="collapse navbar-collapse" id="plumage-navbar-collapse-1">
<ul class="nav navbar-nav">
<li >
<a href="index.html">Home</a>
</li>
<li >
<a href="all-regions.html">All regions</a>
</li>
<li >
<a href="countries.html">Countries</a>
</li>
<li >
<a href="germany.html">Germany</a>
</li>
<li >
<a href="us.html">US</a>
</li>
<li >
<a href="hungary.html">Hungary</a>
</li>
<li >
<a href="category-all.html">Articles</a>
</li>
<li >
<a href="tag-analysis">Analysis</a>
</li>
<li >
<a href="tag-about.html">About</a>
</li>
</ul>
</div>
</nav>
</div>
<div class="container main">
<div class="row">
<div class=" col-md-12 ">
<h1>
<a href="./category-all.html" rel="bookmark" title="Permalink to All articles">All articles</a>
</h1>
</div>
</div>
<div class="row">
<div class=" col-md-12 " id="content" role="main">
<dl class="dl-horizontal">
<dt>Tue 07 March 2023</dt>
<dd><a href="./all-regions.html">Tracking plots: All regions and countries</a></dd>
<dt>Tue 07 March 2023</dt>
<dd><a href="./hungary.html">Tracking plots: Hungary</a></dd>
<dt>Tue 07 March 2023</dt>
<dd><a href="./us.html">Tracking plots: United States</a></dd>
<dt>Tue 07 March 2023</dt>
<dd><a href="./germany-incidence-rate-7day-50cases.html">7 Day Incidence Rates: Districts (Landkreise) in Germany</a></dd>
<dt>Tue 07 March 2023</dt>
<dd><a href="./germany.html">Tracking plots: Germany</a></dd>
<dt>Tue 07 March 2023</dt>
<dd><a href="./countries.html">Tracking plots: Countries of the world</a></dd>
<dt>Tue 07 March 2023</dt>
<dd><a href="./countries-incidence-rate-7day-50cases.html">7 Day Incidence Rates: Countries of the world</a></dd>
<dt>Sun 27 March 2022</dt>
<dd><a href="./2022-germany-rki-overview.html">Overview plots Germany with RKI data, and comparison with JHU data</a></dd>
<dt>Fri 19 November 2021</dt>
<dd><a href="./germany-hospitalisierungsrate.html">Germany: Hospitalisierungsrate</a></dd>
<dt>Mon 15 November 2021</dt>
<dd><a href="./2021-11-12-germany-onset-wave4.html">How bad is the 4th wave going to be in Germany?</a></dd>
<dt>Wed 24 March 2021</dt>
<dd><a href="./plots.html">Explanation of plots</a></dd>
<dt>Wed 06 January 2021</dt>
<dd><a href="./2020-germany-reporting-delay-meldeverzug.html">Reporting delay (Meldeverzug) in data sources for Germany (RKI and JHU)</a></dd>
<dt>Tue 22 December 2020</dt>
<dd><a href="./2020-thanksgiving-us.html">Impact of Thanksgiving in the US 2020</a></dd>
<dt>Sat 05 December 2020</dt>
<dd><a href="./tutorial-exponential-growth-example.html">Tutorial: Example data for pure exponential growth</a></dd>
<dt>Mon 02 November 2020</dt>
<dd><a href="./tutorial-overview-plot_reproduction_number.html">Tutorial: Function to plot the R-value and the growth factor of cases and deaths</a></dd>
<dt>Sun 01 November 2020</dt>
<dd><a href="./compare-rki-and-jhu-data.html">Compare data for Germany from RKI and JHU</a></dd>
<dt>Fri 30 October 2020</dt>
<dd><a href="./tutorial-observables.html">Tutorial: Observables computed in OSCOVIDA</a></dd>
<dt>Tue 27 October 2020</dt>
<dd><a href="./tutorial-accessing-population-data.nbdata.html">Tutorial: Accessing population data</a></dd>
<dt>Tue 27 October 2020</dt>
<dd><a href="./tutorial-overview-graph.html">Tutorial: Functions to create overview plot</a></dd>
<dt>Tue 27 October 2020</dt>
<dd><a href="./tutorial-overview-plot_daily_change.html">Tutorial: Function to plot daily changes in numbers of cases and deaths</a></dd>
<dt>Tue 27 October 2020</dt>
<dd><a href="./tutorial-overview-plot_time_step.html">Tutorial: Function to plot total cumulative numbers of cases and deaths</a></dd>
<dt>Wed 02 September 2020</dt>
<dd><a href="./2020-are-summer-holidays-contributing-to-increasing-infections.html">Are the summer holidays in Germany contributing to an increase in infections?</a></dd>
<dt>Sun 16 August 2020</dt>
<dd><a href="./14-day-incidence-rate-germany.html">The 14-day incidence per 100000 for districts (Landkreise) in Germany with detailed calculation</a></dd>
<dt>Sat 15 August 2020</dt>
<dd><a href="./14-day-incidence-rate.html">The 14-day incidence per 100000 with detailed calculation</a></dd>
<dt>Sun 02 August 2020</dt>
<dd><a href="./tutorial-accessing-cases-and-deaths.nbdata.html">Tutorial: Accessing cases and deaths for countries and regions</a></dd>
<dt>Wed 08 July 2020</dt>
<dd><a href="./r-value.html">The R value - introduction, numerical exploration, and algorithm used in OSCOVIDA</a></dd>
<dt>Sun 05 July 2020</dt>
<dd><a href="./tutorial-installing-oscovida.html">Tutorial: Installing OSCOVIDA</a></dd>
<dt>Mon 15 June 2020</dt>
<dd><a href="./oscovida-in-the-news.html">OSCOVIDA in the news</a></dd>
<dt>Mon 08 June 2020</dt>
<dd><a href="./related-resources.html">Related resources</a></dd>
<dt>Wed 27 May 2020</dt>
<dd><a href="./team.html">Team</a></dd>
<dt>Sun 10 May 2020</dt>
<dd><a href="./2020-05-10-notebook-Weekly-fluctuations-in-data-from-Germany.html">Weekly fluctuations in data from Germany</a></dd>
<dt>Sun 03 May 2020</dt>
<dd><a href="./reproduction-number.html">Reproduction number</a></dd>
<dt>Thu 30 April 2020</dt>
<dd><a href="./2020-04-30-news-report-germanys-daily-cases-increasing.html">BBC news reports "Germany's daily cases increasing"</a></dd>
<dt>Thu 30 April 2020</dt>
<dd><a href="./2020-04-30-bbc-germany-increasing-notebook.html">BBC news reports "Germany's daily cases increasing" (Supplementary notebook)</a></dd>
<dt>Sun 19 April 2020</dt>
<dd><a href="./open-science.html">Open Science</a></dd>
<dt>Sun 19 April 2020</dt>
<dd><a href="./license.html">License</a></dd>
<dt>Sun 19 April 2020</dt>
<dd><a href="./motivation.html">Our motivation</a></dd>
<dt>Fri 10 April 2020</dt>
<dd><a href="./data-sources.html">Data sources</a></dd>
<dt>Fri 10 April 2020</dt>
<dd><a href="./contribute.html">Contributions welcome!</a></dd>
<dt>Thu 09 April 2020</dt>
<dd><a href="./faq.html">Frequently Asked Questions (FAQ)</a></dd>
</dl>
</div>
</div>
</div>
<!-- TODO: make footer sticky -->
<footer class="container-fluid">
<div class="container">
<div class="row">
<div class="col-md-2">
<h5>Social</h5>
<ul class="list-unstyled">
<li> <a href="https://twitter.com/OSCOVIDAproject">
<i class="fa fa-twitter"></i>
Open Science COVID Analysis
</a></li>
<li> <a href="https://twitter.com/Panosc_eu">
<i class="fa fa-twitter"></i>
PaNOSC
</a></li>
<li> <a href="https://twitter.com/ProfCompMod">
<i class="fa fa-twitter"></i>
ProfCompMod
</a></li>
</ul>
</div>
<div class="col-md-2">
<h5>Links</h5>
<ul class="list-unstyled">
<li> <a href="http://oscovida.github.io">
<i class="fa fa-external-link"></i>
OSCOVIDA project
</a></li>
<li> <a href="http://www.panosc.eu">
<i class="fa fa-external-link"></i>
PaNOSC project
</a></li>
<li> <a href="mailto:[email protected]">
<i class="fa fa-envelope"></i>
OSCOVIDA
</a></li>
</ul>
</div>
<div class="col-md-2">
<h5>Browse content by</h5>
<ul class="list-unstyled">
<li><a href="./archives-index.html"><i class="fa fa-calendar"></i> Dates</a></li>
<li><a href="./tags-index.html"><i class="fa fa-tag"></i> Tags</a></li>
</ul>
</div>
<div class="col-md-2 text-muted">
<h5>Copyright notice</h5>
<p>© Copyright 2020-2023 OSCOVIDA team.</p>
<p>Unless contrary mentioned, the content of this site is published under a <a rel='license'
href='https://creativecommons.org/licenses/by/4.0/'>Creative Commons
Attribution 4.0 International license</a>. See <a href="http://oscovida.github.io/license.html">license</a> for details.</p>
</div>
<div class="col-md-2 text-muted">
<h5>Disclaimer</h5>
<p>Plots, data and software here are provided <a href="https://github.com/oscovida/oscovida/blob/master/LICENSE#L20">as-is without any warranties</a> by volunteers. Use the material at your own risk. See <a href="http://oscovida.github.io/license.html">license</a> for details.</p>
</div>
<div class="col-md-2">
<h5>Feeds</h5>
<ul class="list-unstyled">
<li><small><a href="https://oscovida.github.io/feeds/all.atom.xml"><i class="fa fa-rss"></i> All posts (Atom)</a></small></li>
</ul>
</div>
</div>
</div>
<h5 class="text-right"><a href="#"><i class="fa fa-arrow-up"></i> Back to top</a></h5>
<div class="container">
<div class="row col-md-12 text-muted text-center">
Site generated by <a href="https://getpelican.com"> Pelican</a>.<br/>
<a href="https://github.com/kdeldycke/plumage"> Plumage</a> theme by <a href="https://kevin.deldycke.com">Kevin Deldycke</a>.
</div>
</div>
</footer>
<script type="text/javascript">
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-163845056-1', 'auto');
ga('send', 'pageview');
</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/magnific-popup.js/1.1.0/jquery.magnific-popup.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/fitvids/1.1.0/jquery.fitvids.min.js"></script>
<script src="./theme/js/jquery.mglass.js"></script>
<script src="./theme/js/application.js"></script>
<script>
document.getElementsByTagName("table")[0].setAttribute("id", "data_table");
</script>
</body>
</html>