Skip to content

Commit bdc053b

Browse files
committed
2020-09-18 update
1 parent 4215619 commit bdc053b

File tree

88 files changed

+177078
-84772
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

88 files changed

+177078
-84772
lines changed

_layouts/01_layout.html

+14
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,21 @@ <h2>An interactive visualization of the exponential spread of COVID-19</h2>
3232
{% if page.name == "states-normalized.html" %}<b>{% endif %}<a href="states-normalized.html">US States</a>{% if page.name == "states-normalized.html" %}</b>{% endif %}
3333
</li>
3434
</ul>
35+
<hr>
36+
37+
<div class="btn-group btn-group-toggle" data-toggle="buttons" style="padding-bottom: 12px;">
38+
<div class="input-group-prepend">
39+
<span class="input-group-text">Data Source:</span>
40+
</div>
41+
<select class="form-control datasrc-select">
42+
<option value="merged">Johns Hopkins &amp; Our World in Data</option>
43+
<option value="jhu" selected>Johns Hopkins University CSSE</option>
44+
<option value="owid">Our World in Data (Oxford, et al)</option>
45+
<option value="ctp">The COVID Tracking Project (The Atlantic)</option>
46+
</select>
47+
</div>
3548
</div>
49+
3650
</div>
3751

3852
<div class="container">

_updates/2020-07-29.md

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
title: Testing Data Improvements
3+
date: 2020-07-29
4+
visualization: 1
5+
---
6+
7+
- Added "Data Source" to individual graph pages.
8+
- Added Testing data to the `countries-normalized` graph.
9+
- Modified the Our World in Data processing script to show no data after the last change in total tests. (Previously, the data would show 0 new tests /day when the data had the same total number of tests.)

_updates/2020-07-30.md

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
title: Animation Improvements
3+
date: 2020-07-30
4+
visualization: 1
5+
---
6+
7+
- Added new "Highlight" option, "(None, without dimming)" to show all of the data without the non-highlight opacity filter applied.
8+
- Non-highlighted data lines will now stay the same color when animated (from [#57](https://github.com/wadefagen/91-DIVOC/issues/57) from [@kidinthehall](https://github.com/kidinthehall)).

_updates/2020-08-03.md

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
title: Log Scale Improvements
3+
date: 2020-08-03
4+
visualization: 1
5+
img: 2020-08-03.png
6+
img_url: /pages/covid-visualization/?chart=states-normalized&highlight=Illinois&show=us-states&y=both&scale=log&data=testPositivity-daily-7&data-source=jhu&xaxis=right#states-normalized
7+
---
8+
9+
- Allowed the display of "log-scale" graphs on percentage graphs (ex: test positivity, case fatality rates).
10+
- Improved the title on normalized percentage graphs ("test positivity" is never normalized, as it's a percentage).
11+
- Wrote a article, ["Minimizing Overlapping Labels in Interactive Visualizations"](https://towardsdatascience.com/minimizing-overlapping-labels-in-interactive-visualizations-b0eabd62ef0), for Towards Data Science about the new label layout algorithms for the right-align graphs.

_updates/2020-08-03.png

187 KB
Loading

_updates/2020-08-05.md

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
title: YouTube Video
3+
date: 2020-08-05
4+
# visualization: 1
5+
---
6+
7+
Over the past few months, one of the most common question I was asked was "how did you get started?" or "how was this created?". Over the past week, I created a video that dives into how 91-DIVOC was created:
8+
9+
<iframe width="560" height="315" src="https://www.youtube.com/embed/FSY12kiK1_o" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
10+
11+
This is my first exploration of video, so I'd love your feedback! I believe it should give you some insight in how this visualization is created. :)

_updates/2020-08-07.md

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
title: State-computed Values for the United States
3+
date: 2020-08-07
4+
visualization: 1
5+
img: 2020-08-07.png
6+
img_url: /pages/covid-visualization/?chart=states&highlight=US-Total%2C%20Computed*&show=us-states&y=both&scale=linear&data=deaths-daily&data-source=jhu&xaxis=right&extra=United%20States#states
7+
---
8+
9+
Johns Hopkins University has always reported the "United States" as part of their list of countries and, in a second dataset, reported the 50 states and US territories as individual locations. The number of confirmed cases and deaths between the "United States" total and the sum of the 50 states' data has always varied slightly, accounting for the cases is the US territories, cruise ships, repatriation flights, and more. Previous cases of large discrepancies between the data have always been paired with a spike in a single state data where a number of previously unreported cases were reported in a single day.
10+
11+
Recently, the difference between the sums (particularly in the number of deaths) has become significant without a known cause. To help dive deep into this difference, I've added a new "Data" value in the graphs of the US states:
12+
13+
- Added "Data" value "US-Total, Computed*" to the two graphs of the US states. This data is computed based off the sum of the 50 individual states' data instead of using the "United States" value.
14+
- You can compare the difference between the two values by choosing one and them using "+Add Additional Data". You can add this to the "global" graph by choosing "+Add US State" (since the data is computed via the state-level data).

_updates/2020-08-07.png

59.8 KB
Loading

_updates/2020-08-10.md

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
---
2+
title: Cases per Week
3+
date: 2020-08-10
4+
visualization: 2
5+
img: 2020-08-10.png
6+
img_url: /pages/covid-by-your-locations/
7+
---
8+
9+
In the original release of [91-DIVOC #02: "COVID-19 Data for Locations of People You Love"](/pages/covid-by-your-locations/), the number of new cases were represented by a percentage increase over the past week. As COVID-19 has continued, this one-week metric is less and less relevant and has been replaced with population-normalized statistics to allow a better perspective on COVID-19 in various locations:
10+
11+
- Added a new line showing the number of cases /100k people in each location. For example:
12+
- Champaign, Illinois has "**+59.61** new cases /100,000 people in the past week (+125)"
13+
- New York City that has "**+25.3** new cases /100,000 people in the past week (+2109)"

_updates/2020-08-10.png

10.7 KB
Loading

_updates/2020-09-10.md

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
title: Added Normalized/Non-normalized Statistics
3+
date: 2020-09-10
4+
visualization: 1
5+
---
6+
7+
For all mouseovers in area where the population is known, the mouseover will provide a normalized value for the data (ex: "3 cases /100k") in addition to the raw data. When viewing a normalized chart, the raw data value is also given.
8+
9+
Additionally, the data stream from Our World In Data is now updated daily providing global testing data. 🎉

_updates/2020-09-18.md

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
title: Normalized "Top 25" shows data based on normalized-values
3+
date: 2020-09-18
4+
visualization: 1
5+
---
6+
7+
Selecting "Top 25" (or other similar options) on a normalized chart now works more as expected, showing the top 25 **normalized** values instead of the top 25 raw values.

index.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ layout: home
1818
#04: <a href="pages/coronavirus-contribution-by-state/">Coronavirus Contribution by State</a>
1919
</li>
2020
<li>
21-
<b>NEW</b> #05: <a href="pages/interactive-visualziation-of-covid-19-in-illinois/">Interactive Visualization of COVID-19 in Illinois</a>
21+
#05: <a href="pages/interactive-visualization-of-covid-19-in-illinois/">Interactive Visualization of COVID-19 in Illinois</a>
2222
</li>
2323
</ul>
2424

@@ -45,7 +45,7 @@ layout: home
4545

4646
{% elsif update.visualization == 5 or update.newVisualization == 5 %}
4747
{% assign viz = "91-DIVOC-05: &quot;Interactive Visualization of COVID-19 in Illinois&quot;" %}
48-
{% assign viz_url = "/pages/interactive-visualziation-of-covid-19-in-illinois/" %}
48+
{% assign viz_url = "/pages/interactive-visualization-of-covid-19-in-illinois/" %}
4949

5050
{% endif %}
5151

Original file line numberDiff line numberDiff line change
@@ -1,58 +1,58 @@
11
Province_State,Confirmed,Deaths,Recovered,Active,People_Tested,Date,dWeek_Confirmed,dWeek_Deaths,dWeek_Recovered,dWeek_Active,dWeek_People_Tested,dWeek_Date,Population
2-
Alabama,81115,1491,32510,47114,657959,07-27-2020,12224,200,2774,9250,64171,07-20-2020,4903185
3-
Alaska,2623,21,817,1785,207368,07-27-2020,673,3,105,565,31782,07-20-2020,731545
4-
American Samoa,0,0,0,0,1037,07-27-2020,0,0,0,0,0,07-20-2020,55641
5-
Arizona,163827,3304,21321,139202,878333,07-27-2020,18644,520,2803,15321,84810,07-20-2020,7278717
6-
Arkansas,39447,408,32365,6674,484891,07-27-2020,5520,45,5968,-493,52075,07-20-2020,3017825
7-
California,458121,8494,0,449627,7296578,07-27-2020,60251,724,0,59527,882257,07-20-2020,39512223
8-
Colorado,44547,1799,5182,37566,497788,07-27-2020,3999,41,213,3745,55619,07-20-2020,5758736
9-
Connecticut,48983,4418,8516,36049,745051,07-27-2020,928,12,50,866,87758,07-20-2020,3565287
10-
Delaware,14406,579,8035,5792,173059,07-27-2020,782,56,673,53,20064,07-20-2020,973764
11-
District of Columbia,11780,581,9639,1560,174148,07-27-2020,441,2,7730,-7291,22408,07-20-2020,705749
12-
Florida,432747,5931,0,426816,3431497,07-27-2020,72353,859,0,71494,379391,07-20-2020,21477737
13-
Georgia,170843,3509,0,167334,1452963,07-27-2020,25261,332,0,24929,179182,07-20-2020,10617423
14-
Guam,349,5,291,53,20481,07-27-2020,30,0,56,-26,1910,07-20-2020,165718
15-
Hawaii,1711,26,1179,506,114115,07-27-2020,318,2,136,180,8159,07-20-2020,1415872
16-
Idaho,18692,152,5731,12809,167994,07-27-2020,3424,30,1582,1812,20106,07-20-2020,1792065
17-
Illinois,173894,7608,0,166286,2543376,07-27-2020,9972,114,0,9858,263092,07-20-2020,12671821
18-
Indiana,62907,2906,44124,15877,707791,07-27-2020,5701,81,2802,2818,72131,07-20-2020,6732219
19-
Iowa,42696,836,29873,11987,454845,07-27-2020,3353,38,1849,1466,36301,07-20-2020,3155070
20-
Kansas,25804,333,1108,24363,278936,07-27-2020,3148,21,92,3035,17405,07-20-2020,2913314
21-
Kentucky,27586,709,7466,19411,547450,07-27-2020,4172,38,590,3544,53296,07-20-2020,4467673
22-
Louisiana,109917,3786,61456,44675,1260022,07-27-2020,15025,324,8168,6533,157098,07-20-2020,4648794
23-
Maine,3832,119,3292,421,157441,07-27-2020,121,2,133,-14,18219,07-20-2020,1344212
24-
Maryland,84876,3447,5434,75995,855518,07-27-2020,6191,65,90,6036,106239,07-20-2020,6045680
25-
Massachusetts,115926,8536,96452,10938,1131157,07-27-2020,2137,103,1062,972,79876,07-20-2020,6949503
26-
Michigan,87173,6405,57502,23266,1700489,07-27-2020,4778,32,2340,2406,193700,07-20-2020,9986857
27-
Minnesota,51803,1616,45198,4989,970726,07-27-2020,4696,31,4456,209,103316,07-20-2020,5639632
28-
Mississippi,52781,1498,35071,16212,427597,07-27-2020,8892,140,4756,3996,37622,07-20-2020,2976149
29-
Missouri,43489,1221,0,42268,641904,07-27-2020,9387,83,0,9304,69992,07-20-2020,6137428
30-
Montana,3380,47,2090,1243,158655,07-27-2020,760,8,756,-4,19613,07-20-2020,1068778
31-
Nebraska,24899,317,18097,6485,258827,07-27-2020,2052,4,985,1063,23931,07-20-2020,1934408
32-
Nevada,43831,739,1019,42073,444679,07-27-2020,7118,91,152,6875,49258,07-20-2020,3080156
33-
New Hampshire,6441,409,5438,594,153609,07-27-2020,192,11,187,-6,10231,07-20-2020,1359711
34-
New Jersey,179812,15804,32275,131733,1983841,07-27-2020,2849,89,827,1933,180967,07-20-2020,8882190
35-
New Mexico,19502,619,7349,11534,520718,07-27-2020,2287,41,585,1661,51503,07-20-2020,2096829
36-
New York,412344,32645,72766,306933,5627149,07-27-2020,5018,139,537,4342,462337,07-20-2020,19453561
37-
North Carolina,114916,1838,92302,20776,1635476,07-27-2020,13685,161,13595,-71,211588,07-20-2020,10488084
38-
North Dakota,5986,99,4829,1058,148366,07-27-2020,860,6,610,244,12388,07-20-2020,762062
39-
Northern Mariana Islands,40,2,29,9,11759,07-27-2020,2,0,0,2,667,07-20-2020,55194
40-
Ohio,85177,3344,59413,22420,1344098,07-27-2020,9009,155,7553,1301,162186,07-20-2020,11689100
41-
Oklahoma,32685,496,25252,6937,568314,07-27-2020,7249,44,5502,1703,92206,07-20-2020,3956971
42-
Oregon,17088,289,3684,13115,382566,07-27-2020,2241,27,346,1868,42522,07-20-2020,4217737
43-
Pennsylvania,112995,7131,81198,24666,1150688,07-27-2020,6590,106,4418,2066,110775,07-20-2020,12801989
44-
Puerto Rico,15431,201,0,15230,321403,07-27-2020,2970,21,0,2949,116256,07-20-2020,3193694
45-
Rhode Island,18515,1004,1792,15719,196618,07-27-2020,611,9,54,548,12993,07-20-2020,1059361
46-
South Carolina,82417,1506,29378,51533,658901,07-27-2020,10972,342,6825,3805,70585,07-20-2020,5148714
47-
South Dakota,8444,123,7404,917,106827,07-27-2020,501,5,408,88,8173,07-20-2020,884659
48-
Tennessee,96489,978,57239,38272,1411452,07-27-2020,16735,131,11265,5339,196285,07-20-2020,6833174
49-
Texas,400336,5713,229107,165516,3428882,07-27-2020,56553,1607,51236,3710,444328,07-20-2020,28995881
50-
Utah,38409,281,25321,12807,509858,07-27-2020,3883,34,3817,32,40454,07-20-2020,3205958
51-
Vermont,1402,56,1190,156,90617,07-27-2020,42,0,51,-9,6749,07-20-2020,623989
52-
Virgin Islands,364,7,250,107,8397,07-27-2020,60,1,115,-56,1476,07-20-2020,104914
53-
Virginia,86072,2082,10940,73050,1039211,07-27-2020,7697,51,833,6813,118750,07-20-2020,8535519
54-
Washington,53321,1518,0,51803,919347,07-27-2020,5578,65,0,5513,110008,07-20-2020,7614893
55-
West Virginia,5999,104,4332,1563,266033,07-27-2020,915,4,866,45,31053,07-20-2020,1787145
56-
Wisconsin,49417,893,38633,9891,877186,07-27-2020,6399,47,5503,849,93320,07-20-2020,5822434
57-
Wyoming,2520,25,1915,580,48343,07-27-2020,333,1,263,69,4229,07-20-2020,578759
58-
United States,4290107,148008,1325804,2816295,52252334,07-27-2020,455582,7098,165717,282767,5782810,07-20-2020,329488021
2+
Alabama,141757,2401,61232,78124,1044913,09-17-2020,6192,100,7009,-917,39175,09-10-2020,4903185
3+
Alaska,6537,44,2408,4085,415863,09-17-2020,525,2,57,466,22786,09-10-2020,731545
4+
American Samoa,0,0,0,0,1571,09-17-2020,0,0,0,0,0,09-10-2020,55641
5+
Arizona,211660,5409,33381,172870,1352882,09-17-2020,4658,136,1071,3451,80148,09-10-2020,7278717
6+
Arkansas,73211,1166,64145,7900,856918,09-17-2020,6407,226,3477,2704,59740,09-10-2020,3017825
7+
California,775037,14804,0,760233,13080037,09-17-2020,24076,727,0,23349,690046,09-10-2020,39512223
8+
Colorado,63125,2006,6220,54899,1153853,09-17-2020,2970,27,118,2825,74577,09-10-2020,5758736
9+
Connecticut,55386,4488,9204,41694,1408273,09-17-2020,1293,10,62,1221,98813,09-10-2020,3565287
10+
Delaware,19318,619,10193,8506,267168,09-17-2020,852,6,166,680,10470,09-10-2020,973764
11+
District of Columbia,14790,619,11763,2408,341318,09-17-2020,378,3,265,110,22130,09-10-2020,705749
12+
Florida,674456,13086,0,661370,5010973,09-17-2020,19725,760,0,18965,160714,09-10-2020,21477737
13+
Georgia,300903,6474,0,294429,2679891,09-17-2020,11780,270,0,11510,137297,09-10-2020,10617423
14+
Guam,2045,30,1427,588,45253,09-17-2020,199,9,346,-156,2635,09-10-2020,165718
15+
Hawaii,11105,107,4105,6893,265500,09-17-2020,813,13,985,-185,26228,09-10-2020,1415872
16+
Idaho,36489,434,19405,16650,283365,09-17-2020,1872,27,2101,-256,11201,09-10-2020,1792065
17+
Illinois,270294,8624,0,261670,4923033,09-17-2020,12728,163,0,12565,345384,09-10-2020,12671821
18+
Indiana,108646,3478,85334,19834,1269650,09-17-2020,6403,68,5475,860,105509,09-10-2020,6732219
19+
Iowa,77204,1250,55834,20120,701438,09-17-2020,4746,43,4143,560,33569,09-10-2020,3155070
20+
Kansas,51164,582,1920,48662,464226,09-17-2020,3362,79,103,3180,22812,09-10-2020,2913314
21+
Kentucky,59370,1093,11109,47168,1038685,09-17-2020,4598,58,318,4222,154194,09-10-2020,4467673
22+
Louisiana,159304,5313,145570,8421,2124190,09-17-2020,3885,152,5130,-1397,113671,09-10-2020,4648794
23+
Maine,4962,138,4317,507,351378,09-17-2020,329,4,164,161,37469,09-10-2020,1344212
24+
Maryland,118519,3861,7311,107347,1494342,09-17-2020,4441,37,145,4259,70615,09-10-2020,6045680
25+
Massachusetts,126128,9260,109397,7471,3199563,09-17-2020,2582,94,1896,592,1291564,09-10-2020,6949503
26+
Michigan,126722,6955,85513,34254,3251731,09-17-2020,5876,61,4835,980,215283,09-10-2020,9986857
27+
Minnesota,86722,1994,79878,4850,1263546,09-17-2020,4473,58,4453,-38,58045,09-10-2020,5639632
28+
Mississippi,91935,2780,78971,10184,633432,09-17-2020,3613,124,4873,-1384,20194,09-10-2020,2976149
29+
Missouri,109557,1782,0,107775,1178581,09-17-2020,10819,69,0,10750,94657,09-10-2020,6137428
30+
Montana,9647,143,7401,2103,295299,09-17-2020,984,20,669,295,21946,09-10-2020,1068778
31+
Nebraska,39921,442,29966,9513,412851,09-17-2020,2548,12,1791,745,22533,09-10-2020,1934408
32+
Nevada,74595,1506,1997,71092,652583,09-17-2020,2049,77,60,1912,25264,09-10-2020,3080156
33+
New Hampshire,7781,438,7104,239,235510,09-17-2020,208,4,237,-33,9851,09-10-2020,1359711
34+
New Jersey,198361,16057,34546,147758,3265818,09-17-2020,2947,43,256,2648,152164,09-10-2020,8882190
35+
New Mexico,27199,836,14842,11521,837400,09-17-2020,770,20,914,-164,34299,09-10-2020,2096829
36+
New York,447262,33070,75962,338230,9621920,09-17-2020,5351,51,378,4922,568942,09-10-2020,19453561
37+
North Carolina,189576,3180,167257,19139,2714175,09-17-2020,8822,190,10605,-1973,192336,09-10-2020,10488084
38+
North Dakota,16723,182,13828,2713,540625,09-17-2020,2280,22,1898,360,326333,09-10-2020,762062
39+
Northern Mariana Islands,62,2,29,31,14378,09-17-2020,3,0,0,3,3,09-10-2020,55194
40+
Ohio,141585,4580,119690,17315,2718333,09-17-2020,7499,226,7550,-277,227982,09-10-2020,11689100
41+
Oklahoma,73318,930,62144,10244,1039837,09-17-2020,6618,54,5613,951,78127,09-10-2020,3956971
42+
Oregon,30060,521,5376,24163,625424,09-17-2020,1589,24,85,1480,28436,09-10-2020,4217737
43+
Pennsylvania,152775,7893,121296,23586,1869198,09-17-2020,6079,86,4957,1036,87972,09-10-2020,12801989
44+
Puerto Rico,38867,588,0,38279,344839,09-17-2020,2588,76,0,2512,2588,09-10-2020,3193694
45+
Rhode Island,23488,1085,2236,20167,665926,09-17-2020,706,18,39,649,59020,09-10-2020,1059361
46+
South Carolina,135446,3158,51431,80857,1087587,09-17-2020,8854,183,0,8671,55128,09-10-2020,5148714
47+
South Dakota,17686,193,14878,2615,171523,09-17-2020,1852,16,1677,159,12273,09-10-2020,884659
48+
Tennessee,178140,2164,161707,14269,2564879,09-17-2020,9903,176,10505,-778,171839,09-10-2020,6833174
49+
Texas,701350,14826,594817,91707,5345176,09-17-2020,31758,896,30703,159,-60081,09-10-2020,28995881
50+
Utah,60658,437,50108,10113,735178,09-17-2020,4639,7,2563,2069,31412,09-10-2020,3205958
51+
Vermont,1705,58,1533,114,153195,09-17-2020,44,0,53,-9,5889,09-10-2020,623989
52+
Virgin Islands,1238,19,1172,47,18779,09-17-2020,37,1,53,-17,914,09-10-2020,104914
53+
Virginia,137367,2918,16671,117778,1828512,09-17-2020,6907,210,610,6087,112050,09-10-2020,8535519
54+
Washington,81198,2031,0,79167,1691047,09-17-2020,2731,46,0,2685,93060,09-10-2020,7614893
55+
West Virginia,13434,297,9804,3333,498283,09-17-2020,1620,39,900,681,30493,09-10-2020,1787145
56+
Wisconsin,93819,1230,81902,10687,1405298,09-17-2020,8938,37,7068,1833,69668,09-10-2020,5822434
57+
Wyoming,4652,49,4000,603,91452,09-17-2020,453,7,447,-1,6153,09-10-2020,578759
58+
United States,6674259,197630,2540334,3936295,91546598,09-17-2020,278372,5867,136823,135682,6365520,09-10-2020,329488021

0 commit comments

Comments
 (0)