BookmarkSubscribeRSS Feed

Disproportional Impact of COVID-19 on Marginalized Communities

Started ‎03-15-2021 by
Modified ‎05-14-2021 by
Views 1,096
Paper 1191-2021
Author 

David J Corliss, Peace-Work

Abstract

Disasters of all kinds often have a particularly severe impact on minorities and other marginalized communities, and COVID-19 has been no exception. There have been reports of high death rates among African American, Native American, immigrants, prison populations and other marginalized groups. This analysis examines the disproportionate impact of the COVID-19 pandemic among different groups. The New York Times COVID-19 database metrics provide the outcomes, using deaths per capita during the first wave of the pandemic. Counties with the highest percent population BIPOC, Indigenous and below the poverty line are compared to those with those with lowest levels. Log odds are calculated and compared with published levels for medical risk factors (e.g., chronic lung disease). The two factors most at risk, with a log odds of about 10, are persons of color and cardiac patients. Implications of these results are discussed to advise potential mitigation strategies.

Watch the presentation

Watch "Disproportional Impact of COVID-19 on Marginalized Communities" presented by the author on the SAS Users YouTube channel.

 

 

INTRODUCTION: DISPROPORTIONATE IMPACT

Early evidence of disproportionate impact is seen in a case study in the Detroit metropolitan area. Wayne County, Michigan, containing the city of Detroit, had the highest COVID mortality rate outside of the New York City area among counties with at least 100,000 residents. This geography is one of the most racially separated areas of the United States, with the city of Detroit having 14.7% white population in comparison to 80.2% in the surrounding suburbs, according to US Census Bureau data (2019). The prevalence of poverty versus affluence is markedly different also, the suburban areas of the Detroit area consist of Wayne County outside the city of Detroit, together with Oakland and Macomb counties. Analysis is facilitated by the State of Michigan reporting COVID-19 statistics separately for the city of Detroit and Western Wayne county, the only county in the state reporting by geographic subdivision.

 

dcorliss_0-1619237223522.png

Figure 1. COVID-19 First Wave Cumulative Deaths per Capita in Metropolitan Detroit

 

Note the use of CURVELABEL in the SAS code used to create this plot is:

title1 'COVID-19 Pandemic in Metropolitan Detroit'; 
title2 'Deaths per 100,000 Residents';  
proc sgplot data=c19.detroit;  
  where date le mdy(6,30,2020);
  series x=date y=deaths_100k / group=county groupdisplay=cluster curvelabel; 
  xaxis label="Date" type=time valuesformat=mmddyy5.;   
  yaxis display=(nolabel);
run; 
title1 ''; title2 '';

While Detroit was an early hotspot in the COVID-19 pandemic, Figure 1 shows this was confined to a small area with a very high population percentage of BIPOC (Black, Indigenous, Persons of Color). The three suburban geographies present very similar time series. Despite their close proximity, the first wave of the COVID-19 pandemic was far more severe in the city of Detroit than its suburbs. Distinctly higher mortality was apparent by early April. In the First Wave, through the end of June, the mortality odds ratio of the city versus the suburbs was 7.12.

 

STUDY METHODOLOGY

Official US COVID-19 statistics from the Centers for Disease Control (Figure 2, updated March 6, 2021) includes confirmed cases, hospitalizations, and deaths from COVID-19. While these reported risk ratios appear to indicate greater risk for American Indian / Alaskan Native, Black / African American, and Hispanic / Latinx populations, there are concerns with the methodology. It is noted that that the data reported to the CDC is very incomplete: only 53% of case reports include race or ethnicity. This leads the possibility of not only complete data, but also sample and response biases in the cases that are reported. The CDC Race / Ethnicity cannot be recommended for the analysis of the impact of the pandemic on marginalized communities.

dcorliss_0-1619237484319.png

Figure 2. Reporting by Race/Ethnicity: Incomplete Data Reported Over All Time

 

In addition, the point-in-time data provided by the CDC averages the time series across all waves of the pandemic. In the United States, response to the pandemic after the initial wave has become highly politicized, leading politically-driven behaviors such as disregard of recommended safety precautions such as wearing masks and social distancing.
As a result, the CDC report understates the intrinsic risk, which is most apparent at the very beginning of the pandemic, before politically-driven risk behaviors emerged. This happens because of politicization, which has been highly present in the case of the COVID 19 pandemic level cold responses have created a group of degree of behavior driven more bit busy a mortality. Factor driven more by behaviors and by intrinsic underlying risk, and it tends to mask the under this underlying risk. Point-in-time data, looking at the entire pandemic up to a certain date, masks the actual underlying risk. If the pandemic in the US is instead analyzed by interval as it evolves, the intrinsic risk can be ascertained from the very beginning of the pandemic. Once the intrinsic risks by race / ethnicity is measured, it can be compared to subsequent intervals to estimate the risk associated with politically-driven behaviors that have played an important role in the COVID-19 pandemic in the United States.

COVID-19 cases often go unreported due to being asymptomatic or so mild that they are not reported to local health authorities. Deaths, while not perfect, are much more likely to be reported. To support comparison between different geographic areas, mortality counts must be normalized to population size. This established deaths per capita as the best metric to analyze the pandemic.
As shown in Figure 3, the time series of this pandemic has been complex, presenting as a series of waves.

 

dcorliss_1-1619237561447.png

 Figure 3. Pandemic US Mortality Rate by Week

 

In the evolution of the pandemic in the US, substantial variation by geographic area is seen (Figure 4). As seen in the Metro Detroit case study, some areas were much more impacted in the first wave – especially those places with a high percentage BIPOC populations. However, the second, Summer wave, was only found in some geographics areas. This wave is present in the time series in the US, not other countries, and only in a subset of US states.

dcorliss_2-1619237604739.png

Figure 4. Variation by Geographic Area

 

The areas where the Summer wave was prominent is the geographic subset of the United States marked by politically driven denial of the pandemic and resistance to safety precautions.
The First Wave, reflecting intrinsic risk, was most prominent is areas with high percentage BIPOC populations. As the pandemic evolved, behavior-driven risks emerged: rejection of and even large protests against safety precautions such as wearing masks and social distancing. In terms of methodology, the impact of the first wave indicates intrinsic risk - before full understanding of the virus and how to address it. The start of the summer wave, where the increase is driven by behavioral factors, marks the end of the period when intrinsic risk can be measured separately. Accordingly, the key metric for this is study is the cumulative COVID-19 deaths per capita during the First Wave from January 1 through June 30, 2020.

 

COUNTY-LEVEL ANALYSIS

With the outcome key metric established, demographic data was obtained from the US Census Bureau American Community Survey. Data were compiled at a US county level. Quintile subsets of counties by percent BIPOC were created using PROC RANK:

Proc rank data=c19.Phase1_DeathsByCounty groups=5
  out=quint(keep=state county pop_2019 deaths_p1_per_m bipoc_q);
  var bipoc_pct;
  ranks bipoc_q;
  where bipoc_pct not = .; 
run;

 

PROC RANK assigns values beginning with 0, so a value of 1 was added to each quintile to number them 1 through 5. PROC MEANS was used to find the median mortality rate for the counties in each quintile:

data work.quint; 
  set work.quint; 
  bipoc_q = bipoc_q + 1;
run;

proc sort data=work.quint; 
  by bipoc_q;
run;
   
proc means data=work.quint; 
  var deaths_p1_per_m; 
  by bipoc_q; 
  weight pop_2019; 
  output median=deaths_p1_per_m out=work.plot_data;
run;

 

These data were plotted using a Vertical Bar Chart with SGPLOT:

title 'BIPOC Mortality Rate by Population Quintile - Phase 1';
proc sgplot data=work.plot_data;
  xaxis label="BIPOC % of Population - US Counties by Quintile(*ESC*){unicode '000a'x} (Increasing BIPOC % --->)";
  yaxis label="Deaths per M Residents" values=(0 to 300 by 50);
  vbar bipoc_q / response=deaths_p1_per_m datalabel; 
run; 
title '';
dcorliss_0-1619237840774.png

Figure 5. COVID-19 Mortality Rate by % BIPOC Quintile

 

Dividing all US counties into quintiles from lowest to highest BIPOC % of total population, each successive quintile has higher COVID mortality (Figure 5).
Comparing this to the summer wave (Figure 6), a demographic shift is seen with death rates increasing in largely white areas quintiles while decreasing in communities with the largest percent BIPOC population.

 

dcorliss_1-1619237874893.png

Figure 6. Change in COVID-19 Mortality Rate During the Second Wave

 

This shift reflects the behavior-driven nature of the second wave. Keeping in mind that no countries outside the US experienced a COVID-19 wave at this time, this analysis finds the Summer Wave was predominately a characteristic of a subset of US areas with a small percentage of BIPOC which analysis of the First Wave found had the highest intrinsic COVID-19 risk.
This analysis finds disproportionate impact on of the COVID-19 pandemic on BIPOC communities. An important dimension of this result is government management of this challenge. This is especially important due to politicization of pandemic management. This effect can be investigated by dividing states into Red and Blue based on the political party of the Governor (Mayor in the case of Washington, DC) to indicate the affiliation of the administration. Identifying Red and Blue states in this matter, summing the deaths by month and calculating the average mortality rates for each provides the time series plotted in Figure 7:

dcorliss_2-1619237924712.png

Figure 7. Red State vs. Blue States: Different Evolution of the Pandemic

 

The SAS code used to create this plot is:

 

title 'COVID-19 Mortality - Red States vs. Blue States';
proc sgplot data=work.plot_data; 
  xaxis label="Month and Year";
  yaxis label="Deaths per M Residents" values=(0 to 350 by 50);
  vbar date / response=deaths_per_m group=redblue groupdisplay=cluster datalabel;  
  format date monyy5. deaths_per_m comma8.0;
  where date between mdy(3,1,2020) and mdy(3,31,2021);
run; 
title '';

 

Examining the results by wave, we find

• The First Wave, through June 2020, shows the initial impact much was more severe in Blue States, dominated by poor urban centers with a large BIPOC population.
• The Summer wave, in July – October, only occurs in Red States: the mortality rate in Blue states stayed flat. This also allows us to estimate the excess deaths driven by Red State policies. With a difference over the period of 235 deaths per million and a combined population of 151 million, the additional Red State deaths are estimated to be about 35,000 in the Summer Wave.
• While severe in all areas, the Fall wave rose faster in Red states on average and declined faster in Blue states. Estimated 23,800 addition Red State deaths.

 

OTHER DISPROPORTIONATE IMPACTs

COVID-19 has had many wide ranging effects. Economic dislocation, isolation, and other consequences of the pandemic the have aggravated social pathologies known to have disproportional impacts on marginalized communities, including addiction, domestic violence, suicide, human trafficking, and others. Changes in the prevalence of these concerns due to the pandemic can be estimated using the following process:
1. Using statistical analysis, identify risk factors for the particular concern and develop a predictive model. Many of these have been well-studied, with propensity models found in the literature on the subject.
2. Using the model, calculate prevalence using Pre-COVID values for the independent variables for each geography or other subset of interest
3. Identify the factors impacted by the pandemic
4. Determine Post-COVID values for the values that have changed
5. Estimate post-COVID prevalence using the updated values
6. Calculate the pre / post difference in prevalence and % change

As an example, we will consider human trafficking in the United States. A propensity model was presented by the author at SAS Global in 2017 with the following predictive variables:
• Poverty: % Below Poverty Line
• Affluence: Per Capita Income
• Gini Index: % Change
• New Homelessness: Foreclosure % Increase
• Race: % Persons of Color
• History of Legal Slavery: % in slavery in 1860
• Approach to Business Regulation: Right to Work States
Of these risk factors, poverty percent, per capita income, income Gini Index, and Foreclosures have been impacted by the pandemic, while the others were not. Finding new values for the affected predictors allows estimation of the changes caused by the pandemic (Figure 8).

dcorliss_0-1619238149634.png

Figure 8. Change in Human Trafficking Risk Score Resulting from COVID-19

 

The model predicts the areas with the largest increases are Alaska, Central New England, North Dakota, New York, Nebraska, and Idaho.

 

CONCLUSIONs

In summary, disproportional impacts on marginalized populations, especially BIPOC, from the COVID-19 pandemic in the United States. Three distinct waves of the pandemic are seen:
• An initial wave, reflecting intrinsic risk, is seen from February through June. Marginalized populations were badly impacted.
• A Summer Wave from July through October, with an increase in mortality due to behavioral risks including resistance to safety precautions. This wave was only seen in in the United States and, within the US, only in Red States.
• A Fall Wave, beginning in November, was expected by epidemiologists and occurred worldwide.

The key metric for Intrinsic risk is COVID-19 mortality per capita deaths measured during the first wave, before the widespread development of behaviorally-driven risks. Mortality rates are found to increase with population percent BIPOC. The Odds Ratio for COVID mortality between the top and bottom quintiles of BIPOC population percent is 7.12. Additional deaths in Red States since July 1, 2020 due to politically-driven risk behaviors and policy decisions is estimated to be about 59,000 persons.
Connections to other social pathologies with disproportionate impact on marginalized populations as seen. These impacts can be estimated by estimating changes in prevalence model scores resulting from pandemic-driven changes in the independent variables.

 

Table 1: Odds Ratios of highest % prevalence (60%+) vs. lowest (<5%)

BIPOC 10.1
Prison Populations (Saloner et al., 2020) 5.5

Indigenous

3.3

Poverty

2.9

Population Density

1.9

 

References

Banks, D. and Kyckelhahn, T. (2011), “Characteristics of Suspected Human Trafficking Incidents, 2008-2010”, USDOJ
Center on Budget and Policy Priorities, Tracking the COVID-19 Recession’s Effects on Food, Housing, and Employment Hardships
https://www.cbpp.org/research/poverty-and-inequality/tracking-the-covid-19-recessions-effects-on-foo...
New York Times COVID-19 Data, accessed 4/15/2021: https://github.com/nytimes/covid-19-data

Saloner, B. et al, COVID-19 Cases and Deaths in Federal and State Prisons, JAMA, 8/11/2020
US Census Bureau Demographic Data https://www.census.gov/programs-surveys/ces/data/restricted-use-data/demographic-data.html
US Center for Disease Control and Prevention (CDC), Risk for COVID-19 Infection, Hospitalization, and Death By Race/Ethnicity, 2021 https://www.cdc.gov/coronavirus/2019-ncov/covid-data/investigations-discovery/hospitalization-death-...
US Bureau of Labor Statistics Data https://www.bls.gov/data/

Acknowledgements

Thanks are due to Rev. Dr. Donald Kreiss of the Southeast Michigan Synod of the Evangelical Lutheran Church in America, who requested the metropolitan Detroit case study leading to this paper. Initial results from this study were presented at Data Science Conference on COVID-19 from the American Statistical Association. Thanks are due to Mike Jadoo, Jun Yan, and the conference committee for an informative conference contributing to the development of this research.

 

Version history
Last update:
‎05-14-2021 01:28 PM
Updated by:

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

Register now!

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Article Labels
Article Tags