-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (46 loc) · 1.87 KB
/
index.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
<head>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<!-- Load plotly.js into the DOM -->
<script src='https://cdn.plot.ly/plotly-latest.min.js'></script>
<script src="https://d3js.org/d3-dsv.v1.min.js"></script>
<script src="https://d3js.org/d3-fetch.v1.min.js"></script>
</head>
<body>
<header class="primary">
<h1>Washington State Covid 19</h1>
<h2 id='wacounts'></h2>
</header>
<div class="jumbotron">
<p id='wacfr'></p>
<div class="font-weight-light">
<ul>
<li>2020-01-21: WA first case</li>
<li>2020-03-16: All schools closed</li>
<li>2020-03-25: All non-essential business closed</li>
</ul>
</div>
</div>
<div id='walineplotdiv'></div>
<div id='map'> </div>
<div id='bycounty'>
<h2>Data by County</h2>
<div id="ctable">
</div>
<div id="pos">
<h3>Positive/Confirmed Cases</h3>
<div id='posbycounty'></div>
</div>
<div id="death">
<h3>Deaths</h3>
<div id='deathbycounty'></div>
</div>
</div>
<div id='walineplotdivwhypo'></div>
<footer>
<h4>Notes </h4>
<ul>
<li> The Case Fatality Rate is the number of reported deaths divided by the number of confirmed and reported cases. This number is useful for understanding reported deaths and cases but does not represent disease risk or mortality.</li>
<li>County reporting for Negative, Pending, and Hospitalizations are inconsistent. I am starting to include them as data points where they are found.</li>
<li>On 27 March, I started including "probable" cases as positive where they were reported. This caused jumps in a few county cases where the people in "presumed/probable" never moved to "confirmed". </li>
</footer>
</body>