A Covid-19 Vulnerability Index

New Zealand COVID-19

If Covid-19 gets into the community, which countries have the vaccinations and health system capacity to handle it

Mitchell Palmer https://mitchellpalmer.nz (Yale-NUS College)
09-16-2021

One of the greatest dangers of Covid-19 is that it can overwhelm healthcare systems, thus degrading the standard of care recieved by all patients. Assuming an outbreak occurs, a country’s vulnerability to such an outcome can be approximated as a function of three factors:

Ideally, a vulnerability index would include a variety of other factors – especially the age distribution of the population, the number of people with natural immunity to Covid-19 already acquired and the ability of the healthcare system to scale at speed – but such factors are difficult to summarise in single number avaliable for a large number of countries.

As such, this brief blog post limits itself to a much simpler, more tractable model. First, we consider \(n\) different vaccines administered in a country (\(c\)) with a population (\(p_c\)), each with an effectiveness against hospitalization (\(e_i\)), a recommended number of doses for a full course (i.e., 2 for Pfizer and 1 for J&J) (\(f_i\)), and a number of doses of the vaccine given (\(d_i\)). With those figures, we can create an ‘efficacy-weighted vaccination rate’ (\(r_c\)). This weighting accounts for the obvious fact that lower efficacy vaccines need higher coverage to reach equivalent protection.

\[ r_c = \frac{\sum^{n}_{i=0}e_i \frac{d_i}{f_i}}{p_c} \]

When we combine that vaccination rate (or, in fact, \((1-r_c)\) to proxy for the number of cases likely to escape, given the vaccination rate and efficacy) with a suitable proxy for healthcare system capacity – in this case, the number of hospital beds \(b_c\) per head, we create a vulnerability metric \(v_c\) which essentially proxies for how long/severe an outbreak would have to be, in the absence of non-pharmaceutical interventions like lockdowns, to overwhelm the health system.

\[ v_c = \frac{1-r_c}{\left(\frac{b_c}{p_c}\right)} \]

The Practical Stuff

The best source for COVID-19 data is Our World in Data, which has an incredible collection of data on many aspects of the pandemic. Unfortunately, however, its by-manufacturer data is relatively scarce. Due to my particular interest in these four countries, I have manually added the latest data for Singapore (Pfizer/Moderna is assumed at 50% share each, together with 100% of non-government vaccines being Sinovac), Australia (sourced from the TGA safety reports), New Zealand (from the Ministry of Health), and the United Kingdom (from the MHRA safety data) to their dataset.

Estimating efficacy-weighted vaccination rates

We start with OWID’s vaccine-by-manufacturer data (as at 16 September 2021 11pm Singapore time) with the aforementioned countries’ data added. Then we join that data with data on the efficacy of the various vaccines against hospitalization caused by the Delta variant from various sources (this data is reproduced at the end of the post). Where data for the delta variant is not avaliable, we adjust the efficacy rate down by 10% (not percentage points), which is the percentage which one study found the Astra-Zeneca’s efficacy fell by when confronted by Delta rather than other variants or the original disease. Population data is then taken from the World Bank.

We now have a useful metric for how well-vaccinated a population is against the risk of hospitalization due to the delta variant.

Estimating vulnerability

Now, following from the formula above, we integrate the World Bank’s data on the number of hospital beds avaliable per capita to come to a conclusion about the vulnerability of the health system to an outbreak.

Now, there are a variety of limitations to this data (notably that World Bank beds-per-capita data can be up to 10 years old [it isn’t for most countries in this dataset though] and is based on capacity, not spare capacity at any given moment), but the broad conclusion should be deeply worrying for my New Zealand compatriots: With our current level of vaccination and the current capacity of our health care system, New Zealand would be the most vulnerable rich country for which data is avaliable were the Delta variant to enter the community. On my crude metric, we would be roughly 50% more vulnerable than Australia. This seemingly validates the Prime Minister’s decision to move very quickly into lockdown given the most recent outbreak – and offers some explanation for why NSW took longer to do so. Moreover, it emphasises why it is so important for New Zealand’s vaccination programme to succeed, despite its incredibly slovenly start.

There is a variety of complicated modelling (for instance, using a susceptible-infected-recovered model to account for natural immunity and exponential spread) which could likely improve the specific applicability of this model to decision-making, but, as a starting point and an intuition-builder, I think it is useful. Please let me know if you have any thoughts on how I could improve it! (Source code is avaliable at Github)

Vaccine Effectiveness Data

vaccine efficacy fullcourse delta source adj_efficacy
Johnson&Johnson 0.71 1 TRUE https://www.wsj.com/articles/j-j-vaccine-highly-effective-against-delta-variant-in-south-african-trial-11628292645 0.710
Oxford/AstraZeneca 0.92 2 TRUE https://www.gov.uk/government/news/vaccines-highly-effective-against-hospitalisation-from-delta-variant 0.920
Sinovac 0.88 2 FALSE https://doi.org/10.1056/NEJMoa2107715 0.792
Sputnik V 0.81 2 TRUE https://www.science.org/news/2021/08/russia-s-sputnik-v-protects-against-severe-covid-19-delta-variant-study-shows 0.810
Moderna 0.95 2 TRUE https://www.cdc.gov/mmwr/volumes/70/wr/mm7037e2.htm?s_cid=mm7037e2_w 0.950
Pfizer/BioNTech 0.96 2 TRUE https://www.gov.uk/government/news/vaccines-highly-effective-against-hospitalisation-from-delta-variant 0.960
CanSino 0.91 1 FALSE https://www.straitstimes.com/asia/south-asia/cansinobios-covid-19-vaccine-657-per-cent-effective-in-global-trial-pakistan-health 0.819
Sinopharm/Beijing 0.79 2 FALSE https://www.who.int/news-room/feature-stories/detail/the-sinopharm-covid-19-vaccine-what-you-need-to-know 0.711

Corrections

If you see mistakes or want to suggest changes, please create an issue on the source repository.