Epidemic Models Practical 2 (Lecture 7): Deterministic Compartmental Models in Populations with Different Levels of Susceptibility and Infectivity - 1.5 Hours

Total Page:16

File Type:pdf, Size:1020Kb

Epidemic Models Practical 2 (Lecture 7): Deterministic Compartmental Models in Populations with Different Levels of Susceptibility and Infectivity - 1.5 Hours Epidemic Models Practical 2 (Lecture 7): Deterministic compartmental models in populations with different levels of susceptibility and infectivity - 1.5 hours Accompanying R codes: EpiTut2a.R (Case 1), EpiTut2b.R (Case 2), EpiTut2b_init.R (optional section) with corresponding ODEs coded in SIR.R, SIRMajorSus.R, SIRMajorSusInf.R and function for R0 and WAIFW-matrix in betaAndR0fc.R Notes & Tips: 1. Move all of the above R-files into your working directory and change the directory path in the R- codes for EpiTut2a.R and Epitut2b.R 2. Skip the mathematical derivations in the ‘analytical assessment’ sections if you feel uncomfortable with mathematical equations Outline: In this practical you will learn how to use deterministic epidemiological models for predicting epidemiological characteristics and the impact of control strategies in populations with variation in susceptibility. In particular, we explore how distinct levels of susceptibility affect epidemiological characteristics for different scenarios: o Case 1: only difference in susceptibility o Case 2: susceptibility confers difference in infectivity 1. Case 1: Difference in susceptibility only Figure 1 shows a flow diagram for an SIR model in a closed population of constant size N for a disease for which individuals belong to one of two categories according to their susceptibility to the infection. Let S+ and S- denote the ratio of susceptible individuals with high and low susceptibility, respectively, with corresponding transmission rates β+ = β and β- = εβ, with 0 ≤ 휀 ≤ 1. Let’s further assume that both groups have equal recovery rate γ and that the proportion of individuals with low susceptibility is p, 0 ≤ 푝 ≤ 1. As in previous applications, we assume that the contact structure is homogeneous. 1.1 Empirical assessment: a) Give some (real life) examples for which the model in Figure 1 may be a valid representation. b) What value does the parameter ε have if the presence of a gene confers complete resistance to infection? What is the value of ε in homogeneous populations? 1.2 Analytical assessment: a) Use the formula for R0 below to obtain the minimum proportion of individuals with low susceptibility required for preventing an epidemic outbreak as a function of the model parameters β,γ,ε,p. ퟏ b) Show that in the case of complete resistance this proportion is equal to ퟏ − where 푹̂ퟎ 푹̂ퟎ refers to the basic reproductive ratio in a homogeneous population with transmission rate β. c) What proportion of fully resistant individuals would be required to prevent an outbreak for a disease with an estimated value of R0=2 in a population with high susceptibility? 1 푅 = (푝휀훽 + (1 − 푝)훽) 0 훾 1.3 Numerical assessment of the infection dynamics: Open the R-script EpiTut2a.R and auxiliary file SIRMajorSus.R The code describes the above SIR model in heterogeneous populations such as those described above with parameters β = 0.8, γ = 1/4, ε=0.3 and p = 0.2 in a population of N=1000 individuals, where 1 infectious individual of the type with low susceptibility is introduced into a population of 999 non-infected individuals. Take some time to familiarize yourself with the code. Then use the code (in particular steps 1- 3) to a) calculate R0 for the above parameters. What is the required proportion of individuals with low susceptibility to prevent a disease outbreak? b) generate infection profiles for the above population and compare them with those corresponding to a homogeneous population with the same average transmission rate. Does ignoring heterogeneity cause an upward or downward bias for the total proportion of infected individuals at the end of the epidemic? c) Explore the profiles for different parameter combinations. Does heterogeneity in susceptibility always produce an upward / downward bias? 1.4 Optional section: d) Set the parameter values back to the original values (see above). Use steps 4 and 5 in the R-code to explore the impact of the effect size ε on the epidemiological characteristics. Looking at the graphs you generated, how much do peak prevalence and duration of the epidemics differ between the scenarios where the maximum transmission rate β is reduced by a factor ε = 0, ε = 0.5 and ε = 1 for a proportion p=0.2 of individuals with low susceptibility? Are 20% of completely resistant individuals sufficient to prevent an epidemic? e) Similarly, what impact does the proportion of individuals with low susceptibility have on the epidemiological characteristics in the case that the transmission rate for the highly susceptible group is twice as high as that of the group with low susceptibility and parameter values for β, γ as above? Can the presence of individuals with low susceptibility prevent an outbreak? 2. Case 2: Difference in susceptibility and infectivity In the model above we assumed that individuals differ in susceptibility only. Let’s now relax this assumption and explore how differences in both susceptibility and infectivity affect the epidemics. For simplicity we assume that differences in susceptibility may confer differences in infectivity, and that S+ and I+ denote the category of susceptible and infectious individuals from the high susceptibility group and S- and I- denote the corresponding categories for the low susceptibility group. The figure below illustrates the flow chart of the corresponding epidemiological model. As above we assume that both groups have equal recovery rate γ and that the proportion of individuals with low susceptibility is p, with 0 ≤ 푝 ≤ 1. For the analysis it is helpful to re-parameterize the above model by defining the transmission rates relative to a reference rate β0. Let us set β++ = β0, β-+ = εS * β0, β+- = εI * β0 and β-- = εI * εS * β0. Here the scaling factor εS, 0 ≤ 휀푆 ≤ 1 describes the effect of the low susceptibility type on the transmission rate and the factor εI describes the effect of the low susceptibility type on its infectivity. Thus, the WAIFW (beta) matrix for the above model is 훽 훽 훽 휀 훽 β = ( ++ +−) = ( 0 퐼 0 ) 훽−+ 훽−− 휀푆훽0 휀퐼휀푆훽0 2.1. Analytical assessment (a) What can be said about the value of 휀퐼 and about the relative values for the transmission parameters in the case that (i) difference in susceptibility confers no difference in infectivity (ii) susceptibility and infectivity are positively correlated (i.e. high susceptibility confers high infectivity) (iii) susceptibility and infectivity are negatively correlated (high susceptibility confers low infectivity) Can you think of biological explanations for each of the scenarios (i) to (iii)? Which scenario is most likely in your opinion? (b) Write down the model equations, the next generation matrix of the number of secondary cases produced through each of the four transmission routes, and the equations for the number of secondary cases produced by each of the two infectious classes (I+ and I-) to get expressions for the + - upper and lower bounds for R0, i.e. R0 and R0 . The actual value for R0 is the eigenvalue of the next generation matrix. We will calculate this value in the R-script below. 2.2. Numerical assessment Open the R-file EpiTut2b.R and auxiliary files SIRMajorSusInf.R and c The code describes the above SIR model in a population comprising 1000 individuals. In these simulations, parameter values are set to γ = ½ days, β0 = 1.5 per day, εS=0.5, and p = 0.2. For εI three values are chosen, representing different relationships between susceptibility and infectivity, i.e εI =0.2, εI = 1 and εI = 5, respectively. The epidemics starts by introducing 1 infectious individual of the low susceptible type into a population of 999 non-infected individuals. Take some time to familiarize yourself with the code. Then use the code (in particular steps 2 and 3) to answer the following questions. a. Check your model equations derived in 2.1b above by comparing your equations with the derivatives coded in the R-scripts (SIRMajorSusInf.R and betaAndR0fc.R). Also check your - expressions for the 2 by 2 next generation matrix of the number of secondary cases and R0 + and R0 derived in 2.1b (Step 2 in code – formulas coded in betaAndR0fc.R). b. For the parameter set above, calculate the basic reproductive ratios R0 for this model for the three scenarios εI =0.2, εI = 1 and εI = 5, respectively. Which scenario gives the highest value for R0? Is this expected? (Step 2 in code of EpiTut2b.R: call the function betaAndR0fc with different values of εI). - + c. How do these values compare with the values for the two thresholds R0 and R0 , and with the corresponding R0 for homogeneous populations with the same average transmission rate β = (1-p) * β0 + p* εS * β0? (Step 2 in code: Compare values of R0 and R0_homo). d. Generate infection profiles corresponding to the four scenarios (1) homogenous population with the above average transmission rate β (2) heterogeneous population with difference in susceptibility only (εI = 1), (3) heterogeneous population where low susceptibility confers low infectivity (εI = 0.2), (4) heterogeneous population where low susceptibility confers high infectivity (εI = 5) (Step 3 in code). Inspect the plots to fill in the following table for epidemiological characteristics: Characteristics Peak Time of peak Total Duration of R0 / Scenario prevalence prevalence proportion epidemics infected 1 2 3 4 Which of the four scenarios causes the most / least severe epidemics? e. Now use step 4 in the code to explore the effect of the proportion of individuals with low susceptibility on the epidemiological characteristics. In particular, use the figures and R0 values to determine o the effect (increasing or decreasing?) of increasing the proportion of individuals with low susceptibility on time and value of peak prevalence, total proportion infecteds, duration of the epidemics and on R0.
Recommended publications
  • Contact Patterns and Their Implied Basic Reproductive Numbers: an Illustration for Varicella-Zoster Virus
    Epidemiol. Infect. (2009), 137, 48–57. f 2008 Cambridge University Press doi:10.1017/S0950268808000563 Printed in the United Kingdom Contact patterns and their implied basic reproductive numbers: an illustration for varicella-zoster virus T. VAN EFFELTERRE1*, Z. SHKEDY1,M.AERTS1, G. MOLENBERGHS1, 2 2,3 P. VAN DAMME AND P. BEUTELS 1 Hasselt University, Center for Statistics, Biostatistics, Diepenbeek, Belgium 2 University of Antwerp, Epidemiology and Social Medicine, Center for Evaluation of Vaccination, Antwerp, Belgium 3 National Centre for Immunization Research and Surveillance, University of Sydney, Australia (Accepted 25 February 2008; first published online 9 May 2008) SUMMARY The WAIFW matrix (Who Acquires Infection From Whom) is a central parameter in modelling the spread of infectious diseases. The calculation of the basic reproductive number (R0) depends on the assumptions made about the transmission within and between age groups through the structure of the WAIFW matrix and different structures might lead to different estimates for R0 and hence different estimates for the minimal immunization coverage needed for the elimination of the infection in the population. In this paper, we estimate R0 for varicella in Belgium. The force of infection is estimated from seroprevalence data using fractional polynomials and we show how the estimate of R0 is heavily influenced by the structure of the WAIFW matrix. INTRODUCTION and social factors affecting the transmission rate be- tween an infective of age ak and a susceptible of age a An essential assumption in modelling the spread of [1, 2]. For the discrete case with a population divided infectious diseases is that the force of infection, which into a finite number, say n, of age groups, Anderson & is the probability for a susceptible to acquire the May [3] introduced the WAIFW (Who Acquires infection, varies over time as a function of the level of Infection From Whom) matrix in which the ij th entry infectivity in the population [1].
    [Show full text]
  • Supplementary Information Methods Supplement
    1 SUPPLEMENTARY INFORMATION 2 METHODS SUPPLEMENT 3 4 Description of Model Structure 5 A frequency-dependent SIRS-type metapopulation model was used to explore the effect of enhanced 6 shielding with three population categories being modelled: 7 8 Vulnerable population (Nv) - Those who have risk factors that place them at elevated risk of 9 developing severe disease if infected with COVID-19 and so would remain shielded whilst the 10 rest of the population is gradually released from lockdown. 11 Shielders population (Ns) - Those who have contact with the vulnerable population and include 12 carers, certain care workers and healthcare workers. It is expected that they would also 13 continue some shielding whilst the rest of the population is released from lockdown. 14 General population (Ng). The population that are not vulnerable or shielders. 15 16 For the baseline scenario, a population structure of 20% vulnerable, 20% shielders and 60% general 17 was used (Table M1). A total infectious fraction of 0.0001 (split equally across the population) was 18 used as the initial conditions to seed infection. Model parameters were chosen to best describe the 19 transmission dynamics of COVID-19 in the UK using current assumptions (as of publication) regarding 20 the values of key epidemiological parameters (Table M2). 21 22 The SIRS model assumes that the number of new infections in a sub-population is a function of the 23 fraction of the sub-population that is susceptible (SX), the fraction of the sub-population that is 24 infectious (IX) and the rate of infectious transmission between the two sub-populations (βX).
    [Show full text]
  • The Basic Reproduction Number of an Infectious Disease in a Stable Population: the Impact of Population Growth Rate on the Eradication Threshold
    Math. Model. Nat. Phenom. Vol. 3, No. 7, 2008, pp. 194-228 The Basic Reproduction Number of an Infectious Disease in a Stable Population: The Impact of Population Growth Rate on the Eradication Threshold H. Inabaa1 and H. Nishiurab a Graduate School of Mathematical Sciences, University of Tokyo, 3-8-1 Komaba, Meguro-ku, Tokyo 153-8914, Japan b Theoretical Epidemiology, Faculty of Veterinary Medicine, University of Utrecht, Yalelaan 7, 3584 CL, Utrecht, The Netherlands Abstract. Although age-related heterogeneity of infection has been addressed in various epidemic models assuming a demographically stationary population, only a few studies have explicitly dealt with age-speci¯c patterns of transmission in growing or decreasing population. To discuss the threshold principle realistically, the present study investigates an age-duration- structured SIR epidemic model assuming a stable host population, as the ¯rst scheme to account for the non-stationality of the host population. The basic reproduction number R0 is derived using the next generation operator, permitting discussions over the well-known invasion principles. The condition of endemic steady state is also characterized by using the e®ective next generation operator. Subsequently, estimators of R0 are o®ered which can explicitly account for non-zero population growth rate. Critical coverages of vaccination are also shown, highlighting the threshold condition for a population with varying size. When quantifying R0 using the force of infection estimated from serological data, it should be remembered that the estimate increases as the population growth rate decreases. On the contrary, given the same R0, critical coverage of vaccination in a growing population would be higher than that of decreasing population.
    [Show full text]
  • Who Acquires Infection from Whom and How? Disentangling Multi-Host and Multi- Mode Transmission Dynamics in the 'Elimination
    Downloaded from http://rstb.royalsocietypublishing.org/ on March 22, 2017 Who acquires infection from whom and how? Disentangling multi-host and multi- rstb.royalsocietypublishing.org mode transmission dynamics in the ‘elimination’ era Review Joanne P. Webster1, Anna Borlase1 and James W. Rudge2,3 1 Cite this article: Webster JP, Borlase A, Department of Pathology and Pathogen Biology, Centre for Emerging, Endemic and Exotic Diseases, Royal Veterinary College, University of London, Hatfield AL9 7TA, UK Rudge JW. 2017 Who acquires infection from 2Communicable Diseases Policy Research Group, London School of Hygiene and Tropical Medicine, whom and how? Disentangling multi-host and Keppel Street, London WC1E 7HT, UK multi-mode transmission dynamics in the 3Faculty of Public Health, Mahidol University, 420/1 Rajavithi Road, Bangkok 10400, Thailand ‘elimination’ era. Phil. Trans. R. Soc. B 372: JPW, 0000-0001-8616-4919 20160091. http://dx.doi.org/10.1098/rstb.2016.0091 Multi-host infectious agents challenge our abilities to understand, predict and manage disease dynamics. Within this, many infectious agents are also able to use, simultaneously or sequentially, multiple modes of transmission. Accepted: 25 August 2016 Furthermore, the relative importance of different host species and modes can itself be dynamic, with potential for switches and shifts in host range and/ One contribution of 16 to a theme issue or transmission mode in response to changing selective pressures, such as ‘Opening the black box: re-examining the those imposed by disease control interventions. The epidemiology of such multi-host, multi-mode infectious agents thereby can involve a multi-faceted ecology and evolution of parasite transmission’.
    [Show full text]
  • Generating a Simulation-Based Contacts Matrix for Disease Transmission Modeling at Special Settings
    Generating a Simulation-Based Contacts Matrix for Disease Transmission Modeling at Special Settings Mahdi M. Najafabadi a*, Ali Asgary a, Mohammadali Tofighi a, and Ghassem Tofighi b Author Affiliations: a Advanced Disaster, Emergency and Rapid Response Simulation (ADERSIM), York University, Toronto, Canada; b School of Applied Computing, Sheridan College, Toronto, Canada Abstract Since a significant amount of disease transmission occurs through human-to-human or social contact, understanding who interacts with whom in time and space is essential for disease transmission modeling, prediction, and assessment of prevention strategies in different environments and special settings. Thus, measuring contact mixing patterns, often in the form of a contacts matrix, has been a key component of heterogeneous disease transmission modeling research. Several data collection techniques estimate or calculate a contacts matrix at different geographical scales and population mixes based on surveys and sensors. This paper presents a methodology for generating a contacts matrix by using high fidelity simulations which mimic actual workflow and movements of individuals in time and space. Results of this study show that such simulations can be a feasible, flexible, and reasonable alternative method for estimating social contacts and generating contacts mixing matrices for various settings under different conditions. Keywords: Agent-Based Modeling, ABM, Contact Matrices, COVID-19, Disease Transmission Modeling, High Fidelity Simulations, Proximity Matrix, WAIFW Page 1 1. Introduction and Background Person-to-person disease transmission is largely driven by who interacts with whom in time and space (Prem et al., 2020). Past and current studies, especially those conducted during the COVID- 19 pandemic have further revealed that individuals who have more person-to-person contact per period have higher chances of becoming infected, infecting others, and being infected earlier during pandemics (Smieszek et al., 2014).
    [Show full text]
  • Quantifying How Social Mixing Patterns Affect Disease Transmission
    Quantifying How Social Mixing Patterns Affect Disease Transmission ∗ S.E. LeGresley1;2, S.Y. Del Valle1, J.M. Hyman3 1 Energy and Infrastructure Analysis Group (D-4), Los Alamos National Laboratory, Los Alamos, NM 87545 2 Department of Physics and Astronomy, University of Kansas, Lawrence, KS 66046 3 Department of Mathematics Tulane University, New Orleans, LA 70118 ∗Corresponding author. E-mail address: [email protected](S.E. LeGresley). 1 1 Abstract 2 We analyze how disease spreads among different age groups in an agent-based com- 3 puter simulation of a synthetic population. Quantifying the relative importance of differ- 4 ent daily activities of a population is crucial for understanding the disease transmission 5 and in guiding mitigation strategies. Although there is very little real-world data for these 6 mixing patterns, there is mixing data from virtual world models, such as the Los Alamos 7 Epidemic Simulation System (EpiSimS). We use this platform to analyze the synthetic 8 mixing patterns generated in southern California and to estimate the number and du- 9 ration of contacts between people of different ages. We approximate the probability of 10 transmission based on the duration of the contact, as well as a matrix that depicts who 11 acquired infection from whom (WAIFW). We provide some of the first quantitative esti- 12 mates of how infections spread among different age groups based on the mixing patterns 13 and activities at home, school, and work. The analysis of the EpiSimS data quantifies 14 the central role of schools in the early spread of an epidemic.
    [Show full text]
  • Approximate Bayesian Computation for Infectious Disease Modelling
    Epidemics 29 (2019) 100368 Contents lists available at ScienceDirect Epidemics journal homepage: www.elsevier.com/locate/epidemics Approximate Bayesian Computation for infectious disease modelling T ⁎ Amanda Mintera,1, , Renata Retkuteb,1 a Centre for the Mathematical Modelling of Infectious Diseases, London School of Hygiene and Tropical Medicine, London, UK b The Zeeman Institute for Systems Biology and Infectious Disease Epidemiology Research, University of Warwick, UK ARTICLE INFO ABSTRACT Keywords: Approximate Bayesian Computation (ABC) techniques are a suite of model fitting methods which can be im- Approximate Bayesian Computation plemented without a using likelihood function. In order to use ABC in a time-efficient manner users must make R several design decisions including how to code the ABC algorithm and the type of ABC algorithm to use. Epidemic model Furthermore, ABC relies on a number of user defined choices which can greatly effect the accuracy of estimation. Stochastic model Having a clear understanding of these factors in reducing computation time and improving accuracy allows users Spatial model to make more informed decisions when planning analyses. In this paper, we present an introduction to ABC with a focus of application to infectious disease models. We present a tutorial on coding practice for ABC in R and three case studies to illustrate the application of ABC to infectious disease models. 1. Introduction able to defend, and is responsible for all of these choices. There is an existing body of literature on ABC tutorials. In particular, for an starting Mathematical models can be used to predict infectious disease dy- introduction to ABC in general Sunnåker et al.
    [Show full text]
  • Based Pandemic Influenza Mitigation Strategies
    Cost-effectiveness of Pharmaceutical- based Pandemic Influenza Mitigation Strategies Technical Appendix 1. Description of the transmission model Model structure The model was structured as a set of “Susceptible, Exposed, Infected, Removed” (SEIR)- type deterministic differential equations: r Sd r r = −λ *. S dt r dE r r r =λ*. SE − ω dt r Id r r =ωEI − γ dt r dR r = γI dt The states are vector structures containing 12 elements representing 3 possible vaccination groups (no-vaccine (i=1), pre-vaccine and matched vaccine (i=2) or matched vaccine only (i=3)) and 3 population groups (0-19 years (j=1), 20-64 years (j=2), and 65+ (j=3)). Susceptible states, j for example, can be written as Si , i,j=1..3. The parameters ω and γ were fixed constants representing the rate of progression from exposure to becoming infectious and the rate of recovery from infection respectively. Births and deaths were assumed to make a negligible contribution over the time-scale of the epidemic. We also assumed that there are a growing number of imported cases during the early stages of the pandemic (discussed below). See Appendix 2 for parameter values and ranges. r The force of infection vector λ was dependent on several time-dependent factors including the prevalence of infection and the timing of vaccination programs. We defined r r λ= βˆIN/ , where βˆ is the who-acquires-infection-from-whom (WAIFW) matrix and N was the Page 1 of 5 population size. The mixing between population groups without considering interventions was defined as: ⎛ β β β ⎞ ⎜ 11 12 13 ⎟ ˆ β0 = ⎜ β21 β 22 β 23 ⎟ ⎜ ⎟ ⎝ β31 β 32 β 33 ⎠ Mixing Matrix ˆ The matrix β 0 was calculated using data from a recent POLYMOD survey of contacts conducted in the European Union (1).
    [Show full text]
  • Pulse Mass Measles Vaccination Across Age Cohorts (Age Structure/Mathematical Model/Israel/Dirac Function/Campaign Strategy) Z
    Proc. Natl. Acad. Sci. USA Vol. 90, pp. 11698-11702, December 1993 Population Biology Pulse mass measles vaccination across age cohorts (age structure/mathematical model/Israel/Dirac function/campaign strategy) Z. AGURtt§, L. COJOCARUt, G. MAZOR1, R. M. ANDERSONII, AND Y. L. DANONtt tDepartment of Applied Mathematics and Computer Science, The Weizmann Institute of Science, Rehovot 76100, Israel; *Department of Zoology, Oxford University, South Parks Road, Oxford OX1 3PS, United Kingdom; lDepartment of Statistics, School of Mathematical Sciences, Tel-Aviv University 69978, Israel; IlDepartment of Biology, Imperial Coilege of Science, Technology and Medicine, Prince Consort Road, London SW7 2BB, United Kingdom; and ttThe Children's Medical Center, Kipper Institute of Immunology, The Beilinson Medical Center, Petach-Tikva, 49104, and Sackler School of Medicine, Tel Aviv University, Israel Communicated by Robert M. May, August 2, 1993 (receivedfor review December 18, 1992) ABSTRACT Although vaccines against measles have been a resurgence of measles in the United States is likely without routinely applied over a quarter of a century, measles is still sustained and improved immunization effort (6). persistent in Israel, with major epidemics roughly every 5 The current situation concerning the prospects of measles years. Recent serological analyses have shown that only 85% of eradication in Israel stimulated the production of new guide- Israelis aged 18 years have anti-measles IgG antibodies. Con- lines for measles immunization. A first dose is recommended sidering the high transmissibility ofthe virus and the hih level at 15 months of age and a second dose at 6 years. These of herd immunity required for disease eradication, the Israeli guidelines are based on the conventional concept of a con- vaccination policy against measles is now being reevaluated.
    [Show full text]
  • Estimating Infectious Disease Parameters from Data on Social
    The definitive version of this manuscript is available in the Journal of the Royal Statistical Society, Series C, at www3.interscience.wiley.com/journal/117997424/home, 2010, Vol. 59, Part 2, p. 255-277. Estimating infectious disease parameters from data on social contacts and serological status Nele Goeyvaerts1∗, Niel Hens1,2, Benson Ogunjimi2, Marc Aerts1, Ziv Shkedy1, Pierre Van Damme2, Philippe Beutels2 1Interuniversity Institute for Biostatistics and Statistical Bioinformatics, Hasselt University, Agoralaan 1, B3590 Diepenbeek, Belgium 2Centre for Health Economics Research and Modeling Infectious Diseases (CHERMID) & Centre for the Evaluation of Vaccination (CEV), Vaccine & Infectious Disease Institute, University of Antwerp, Belgium Abstract In dynamic models of infectious disease transmission, typically various mixing patterns are imposed on the so-called Who-Acquires-Infection-From-Whom matrix (WAIFW). These imposed mixing patterns are based on prior knowledge of age- related social mixing behavior rather than observations. Alternatively, one can assume that transmission rates for infections transmitted predominantly through non-sexual social contacts, are proportional to rates of conversational contact which can be estimated from a contact survey. In general, however, contacts reported in social contact surveys are proxies of those events by which transmission may occur and there may exist age-specific characteristics related to susceptibility and infec- tiousness which are not captured by the contact rates. Therefore, in this paper, transmission is modeled as the product of two age-specific variables: the age-specific contact rate and an age-specific proportionality factor, which entails an improve- ment of fit for the seroprevalence of the varicella-zoster virus (VZV) in Belgium. Furthermore, we address the impact on the estimation of the basic reproduction number, using non-parametric bootstrapping to account for different sources of variability and using multi-model inference to deal with model selection uncer- tainty.
    [Show full text]
  • Population Heterogeneity, Structure, and Mixing
    Outline Population heterogeneity, structure, Introduction: Heterogeneity and population structure and mixing Models for population structure Structure example: rabies in space Models for heterogeneity Jamie Lloyd-Smith • individual heterogeneity and superspreaders Center for Infectious Disease Dynamics • group-level heterogeneity Pennsylvania State University Population structure and mixing mechanisms Pair formation and STD transmission Heterogeneity and structure – what’s the difference? Modelling heterogeneity Group-level heterogeneity and multi-group models Tough to define, but roughly… Heterogeneity describes differences among individuals or groups in Break population into sub-groups, each a population. of which is homogeneous. (often assume that all groups mix randomly) Population structure describes deviations from random mixing in a population, due to spatial or social factors. However, epidemiological traits of each host individual are due to a complex blend of host, pathogen, and environmental factors, The language gets confusing: and often can’t be neatly divided into groups - models that include heterogeneity in host age are called (or predicted in advance). “age-structured”. Individual-level heterogeneity - models that include spatial structure where model parameters differ through space are called “spatially heterogeneous”. Allow continuous variation among individuals. Models for population structure Models for population structure Random mixing Multi-group Spatial mixing Random mixing or mean-field • Every individual in population has equal probability of contacting any Network Individual-based model other individual. • Mathematically simple – “mass action” formulations borrowed from chemistry – but often biologically unrealistic. • Sometimes basic βSI form is modified to power law βSaIb as a phenomenological representation of non-random mixing. 1 Models for population structure Models for population structure Multi-group Spatial mixing or metapopulation • Divides population into multiple discrete groupings, based on spatial or social differences.
    [Show full text]
  • Models of Hospital Acquired Infection
    3 Models of Hospital Acquired Infection Pietro Coen University College London Hospitals NHS Trust United Kingdom 1. Introduction This chapter will not dwell on how mathematical models are built, better covered elsewhere (Bailey, 1975; Renshaw, 1991; Scott & Smith, 1994; Coen, 2007). It will focus on the impact of mathematical models on the understanding of infections spread in hospitals and their control. Hospital Acquired Infections (HAIs) made their first appearance with the invention of hospitals, mostly associated with surgical operations carried out when germ theory and hand-hygiene were unheard of and post-surgical mortality could be as high as 90% (La Force, 1987). The invention of antibiotics reduced mortality, but subsequently led to the emergence of infections adapted to survival in the antimicrobial-rich hospital environment. An arms race ensued where the bacterium and the pharmacist are to this day fighting to outwit each other (Sneader, 2005). Bacteria like Meticillin-resistant Staphylococcus aureus (MRSA) and Vancomycin-resistant Enterococci (VRE) were detected in UK hospitals as early as the 1960s (Stewart & Holt, 1962), but it was not until the mid 1990s that they ‘took off’ as a significant problem for hospital managers and inpatients (Austin & Anderson, 1999). If only 10% of adult HAI infections could be prevented, £93 million could be saved in England and Wales alone (Plowman et al., 1999). Hospital inpatients are difficult subjects for study. They are only ‘available’ for a short time window, measured in days; too debilitated to all cooperate to the same degree; an extremely heterogeneous population; and major ethical issues are met when it comes to experimentation, especially when infection is asymptomatic.
    [Show full text]