Severe Incidence and Mortality
severe-mortality.RmdA note of severity and mortality parameters and modelling:
The parameters used here to model severe incidence and mortality are highly uncertain and will vary geographically and with time. The default parameters are fit to data and represent our best current estimates, but should be considered carefully in use.
This vignette focuses on the methodology. For a runnable, end-to-end
example of producing rates (including severe incidence and mortality)
from a simulation, see the
vignette("analysing_malaria_output").
Severe incidence
Postie first makes an adjustment to the incidence of severe cases output from malariasimulation. We now assume that early treatment of clinical cases can prevent a subset of those cases from becoming severe.
We use:
severe incidence from malariasimulation (), which is the modelled incidence of hospitalised severe cases,
the treatment coverage, set in malariasimulation (),
the proportion of severe cases averted by early treatment (, default: 42% [1]),
a baseline treatment coverage (, default: 10%) — the treatment coverage assumed when the severe model was originally fitted in Griffin et al (2016),
and a reference hospitalisation proportion () used in that original fit.
Among the treated fraction of cases () a proportion of severe cases is averted, leaving . Because the modelled severe output corresponds to the baseline coverage , the treatment adjustment is expressed relative to that baseline, following the Griffin et al (2016) SI. We also convert the modelled hospitalised severe incidence to total severe incidence using the reference hospitalisation proportion . The postie (total) severe incidence is then:
can be adjusted with the treatment_scaler argument in the
get_rates() function of postie. The baseline coverage
and reference hospitalisation
are fixed internally so that results stay consistent with the original
Griffin (2016) calibration (and recover the original 0.215
deaths-to-hospitalised-severe ratio when the defaults are used).
Mortality
We can then calculate mortality based on:
the adjusted severe incidence (),
the probability of hospitalisation of a severe case (: 80% default [2])
the case fatality ratio of hospitalised severe cases (: default = 6.5% [2-3])
and the case fatality ratio of non-hospitalised (community) severe cases (: default = 60% [2, 4]).
These three parameters can also be adjusted. An adjusted
must be set as a column named ft_sev in the
malariasimulation object, which can be varied through time, otherwise,
= 0.8 is inferred.
# library(postie)
# library(malariasimulation)
#
# mal_sim_output <- malariasimulation::get_parameters() |>
# malariasimulation::set_drugs(drugs = list(AL_params)) |>
# malariasimulation::set_clinical_treatment(drug = 1, timesteps = 1, coverages = 0.5) |>
# malariasimulation::set_epi_outputs(clinical_incidence = c(1,100)*365,
# severe_incidence = c(1,100)*365) |>
# malariasimulation::run_simulation(timesteps = 1)
#
# mal_sim_output$ft_sev <- 0.5
The severe case fatality parameters can be set directly in the
get_rates() function where
and
are set with the hosp_sev_cfr and
community_sev_cfr arguments, respectively.
Adaptation from the Griffin (2016) calculations
The original Griffin-2016 calculations hard-wired the shortcut to
refactor severe cases and mortality, where all malaria deaths were
simply taken as 0.215 times the modelled incidence of hospital‑treated
severe case. We have replaced this with an explicit two‑stream
calculation that first separates severe episodes into hospital and
community compartments, then applies setting‑specific case‑fatality
ratios to each stream. A new column, ft_sev, lets users
supply (and vary over time) the proportion of severe cases that reach
hospital. A warning‑backed default of 0.8 preserves backward
compatibility - when this default is used the original 0.215 (based on
the default parameterisation) deaths‑to‑hospitalised‑cases ratio is
recovered.
Derivation of the 80% hospitalisation for reference
Let:
= severe case fatality hospital: 0.065
= severe case fatality community: 0.6
= severe incidence hospital
= severe incidence community
= scaling factor linking hospitalised severe incidence to total malaria deaths: 0.215
Total deaths (predicted two ways) are:
Solving for the ratio of non‑hospitalised to hospitalised severe cases gives: image
Coverage (): the share of severe episodes treated in hospital, is therefore: image
Which = 80%.
References
Mousa, A, A Al-Taiar, NM Anstey, C Badaut, BE Barber, Q Bassat, J Challenger, et al. ‘The Impact of Delayed Treatment of Uncomplicated P. Falciparum Malaria on Progression to Severe Malaria: A Systematic Review and a Pooled Multicentre Individual-Patient Meta-Analysis’. PLoS Medicine, 2020.
Griffin, Jamie T, Samir Bhatt, Marianne E Sinka, Peter W Gething, Michael Lynch, Edith Patouillard, Erin Shutes, et al. ‘Potential for Reduction of Burden and Local Elimination of Malaria by Reducing Plasmodium Falciparum Malaria Transmission: A Mathematical Modelling Study’. The Lancet Infectious Diseases 3099, no. 15 (2016): 1–8.
Reyburn H, Mbatia R, Drakeley C, et al. Association of transmission intensity and age with clinical manifestations and case fatality of severe Plasmodium falciparum malaria. JAMA 2005; 293(12): 1461-70.
Lubell Y, Staedke SG, Greenwood BM, et al. Likely health outcomes for untreated acute febrile illness in the tropics in decision and economic models; a Delphi survey. PloS One 2011; 6(2): e17439.