WOLFRAM NOTEBOOK

COVID - 19 Prevalence in Tennessee by County

Load Data

The data source for this is the Tennessee department of health. The source of the data about Tennessee counties is the curated data from Wolfram Research.
In[]:=
tnData=Import["https://www.tn.gov/content/dam/tn/health/documents/cedep/novel-coronavirus/datasets/Public-Dataset-County-New.XLSX",{"Dataset",1},HeaderLines1];
Set up the mapping between the counties that are on the TN Department of Health to the entities that are used to the entities that Wolfram understands. This is because the TN dataset has “Dekalb” while Wolfram has the correct “DeKalb”.
In[]:=

Processing

Exclude the data that is marked as “Pending” or “Out of State” since this doesn’t work well in the context of county-specific processing. At this stage we also add the additional property of PopulationPercentTotal which is the ratio of the people that have tested positive for COVID-19 over the population of each county.
In[]:=
augTnData=tnData[Select[KeyExistsQ[countyMap,#COUNTY]&],<|#,"PopulationPercentTotal"If[#"TOTAL_CASES""",#"TOTAL_CASES"/QuantityMagnitude[countyMap[#COUNTY][EntityProperty["AdministrativeDivision","Population"]]],0]|>&];
Next we group the data by county. From here out we deal with counties in isolation.
In[]:=
countyData=KeySortBy[augTnData[GroupBy["COUNTY"]],-countyMap[#][EntityProperty["AdministrativeDivision","Population"]]&];
Finally create a graph of the data from each of the county’s dataset. We are plotting two different values that bear some correlation: the total number of active cases in the county as well as the percentage of the population of people who have tested positive in that county over time. Note that the total positive percentage can only effectively go up.
In[]:=
countyCallout[c_]:=TemplateApply[StringTemplate["Population: `pop`\nDensity: `dens`",<|"pop"->c[EntityProperty["AdministrativeDivision","Population"]],"dens"->c[EntityProperty["AdministrativeDivision","PopulationDensity"]]|>]]
In[]:=
countyGraphs=Legended
[]
CombinePlots
[DateListPlot[Legended[TimeSeries[Normal[{#DATE,#"TOTAL_ACTIVE"}&/@#]],"Active Cases"],PlotRange{Automatic,{0,All}},AxesLabelAutomatic],DateListPlot[Legended[TimeSeries[Normal[{#DATE,#PopulationPercentTotal}&/@#]],"% pop ever pos"],PlotStyleRed,FrameStyleRed,PlotRange{Automatic,{0,.04}}],"AxesSides""TwoY",PlotLabelPosition[countyData,#][[1]][[1]][[1]],ImageSizeLarge],Placed[Framed[countyCallout[countyMap[Position[countyData,#][[1]][[1]][[1]]]]],{0.3,0.9}]&/@countyData[1;;2]
Out[]=
Shelby
Davidson

Samples of some of the bigger counties

In[]:=
countyGraphs["Davidson"]
Out[]=
Active Cases
% pop ever pos
In[]:=
countyGraphs["Shelby"]
Out[]=
Active Cases
% pop ever pos

Final exports

In[]:=
Export["covid19/00-Davidson.png",Show[countyGraphs["Davidson"],ImageSizeLarge]]
Out[]=
covid19/00-Davidson.png
In[]:=
Scan[Export["covid19/"<>IntegerString[Flatten[Position[Keys[countyGraphs],#]][[1]],10,2]<>"-"<>#<>".png",countyGraphs[#]]&,Keys[countyGraphs]]

Work area

In[]:=
countyData["Davidson"]
Out[]=
DATE
COUNTY
TOTAL_CASES
NEW_CASES
TOTAL_CONFIRMED
NEW_CONFIRMED
TOTAL_PROBABLE
NEW_PROBABLE
POS_TESTS
NEW_POS_TESTS
Fri 6 Mar 2020
00:00:00
Davidson
Sun 8 Mar 2020
00:00:00
Davidson
1.0
Mon 9 Mar 2020
00:00:00
Davidson
1.0
0.0
Tue 10 Mar 2020
00:00:00
Davidson
2.0
1.0
Wed 11 Mar 2020
00:00:00
Davidson
2.0
0.0
Thu 12 Mar 2020
00:00:00
Davidson
6.0
4.0
Fri 13 Mar 2020
00:00:00
Davidson
10.0
4.0
Sat 14 Mar 2020
00:00:00
Davidson
14.0
4.0
Sun 15 Mar 2020
00:00:00
Davidson
17.0
3.0
Mon 16 Mar 2020
00:00:00
Davidson
25.0
8.0
Tue 17 Mar 2020
00:00:00
Davidson
42.0
17.0
Wed 18 Mar 2020
00:00:00
Davidson
58.0
16.0
Thu 19 Mar 2020
00:00:00
Davidson
75.0
17.0
Fri 20 Mar 2020
00:00:00
Davidson
101.0
26.0
Sat 21 Mar 2020
00:00:00
Davidson
140.0
39.0
Sun 22 Mar 2020
00:00:00
Davidson
167.0
27.0
Mon 23 Mar 2020
00:00:00
Davidson
164.0
-3.0
Tue 24 Mar 2020
00:00:00
Davidson
183.0
19.0
Wed 25 Mar 2020
00:00:00
Davidson
188.0
5.0
Thu 26 Mar 2020
00:00:00
Davidson
203.0
15.0
rows 120 of
172
columns 110 of
23
Wolfram Cloud

You are using a browser not supported by the Wolfram Cloud

Supported browsers include recent versions of Chrome, Edge, Firefox and Safari.


I understand and wish to continue anyway »

You are using a browser not supported by the Wolfram Cloud. Supported browsers include recent versions of Chrome, Edge, Firefox and Safari.