forked from reichlab/reichlab.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
110 lines (107 loc) · 3.79 KB
/
Copy pathindex.html
File metadata and controls
110 lines (107 loc) · 3.79 KB
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
---
layout: home
---
<section class="container grid-custom">
<div class="carousel">
{% for image in site.static_files %}
{% if image.path contains 'images/carousel' %}
<div>
<img class="carousel-home-image" src="{{ site.baseurl }}{{image.path}}" alt="" />
</div>
{% endif %}
{% endfor %}
</div>
</section>
<div class="columns">
<div class="column col-12">
<h3>
Welcome to the lab website for Nicholas Reich
</h3>
</div>
</div>
<div class="columns">
<div class="column col-4 col-md-12">
<div class="panel">
<div class="panel-header">
<div class="panel-title"><i class="fa fa-bar-chart"></i> Biostatistics and Public Health</div>
</div>
<div class="panel-body">
<p>
Our team develops statistical methods and analytical tools to help
people make sense of data. Building on close collaborative
relationships with public health practitioners from across the world -- from
Denver to San Juan to Bangkok -- we use modern statistical and machine
learning tools to gain insights into complex disease systems.
</p>
</div>
</div>
</div>
<div class="column col-4 col-md-12">
<div class="panel">
<div class="panel-header">
<div class="panel-title"><i class="fa fa-terminal"></i> Data Science</div>
</div>
<div class="panel-body">
<p>
We build software packages, maintain code repositories, develop SQL
databases, create interactive data visualizations, and run
computationally intensive simulation studies. We use the R programming
language for most of our work, but also use some C, C++, and Python.
</p>
<p>
Check out our work on <a href="https://github.com/reichlab">GitHub</a>.
</p>
</div>
</div>
</div>
<div class="column col-4 col-md-12">
<div class="panel">
<div class="panel-header">
<div class="panel-title"><i class="fa fa-globe"></i> Infectious Disease Epidemiology</div>
</div>
<div class="panel-body">
<p>
Our team develops models for understanding complex and dynamic systems
of infectious disease. We have
<a href="http://journals.plos.org/plosntds/article?id=10.1371/journal.pntd.0004761">
developed real-time forecasts of dengue fever in Thailand</a>,
<a href="http://rsif.royalsocietypublishing.org/content/10/86/20130414.short">
estimated the duration of cross-protection between serotypes of dengue</a>,
and <a href="https://reichlab.github.io/flusight/">predicted the
trajectory of the flu season in the US</a>. </p>
</div>
</div>
</div>
</div>
<div class="columns">
<div class="column col-12">
<h3>
Recent news
</h3>
</div>
<div class="column col-8 col-md-12">
<div class="panel">
<div class="panel-header"></div>
<div class="panel-body">
{% for post in site.categories.blog limit:site.paginate %}
<h3><a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a></h3>
<p><i class="fa fa-clock-o"></i> Posted on {{ post.date | date: '%d %B, %Y' }}</p>
<p>{{ post.excerpt }}</p>
<p>
<a class="btn btn-sm btn-default" href="{{ site.baseurl }}{{ post.url }}">Read More <i class="fa fa-angle-right"></i></a>
</p>
<br>
<div class="divider"></div>
{% endfor %}
</div>
<div class="panel-body">
<p class="float-right">
<a href="{{ site.baseurl }}/blog" class="btn btn-sm btn-primary">Go to blog for more <i class="fa fa-angle-right"></i></a>
</p>
</div>
</div>
</div>
<div class="column col-4 hide-md">
{% include tweets.html %}
</div>
</div>