EpiNow2 Stan Functions
Loading...
Searching...
No Matches
Infections Estimation

Functions for estimating infection trajectories. More...

+ Collaboration diagram for Infections Estimation:

Subgroups

 Estimates Smoothing
 Functions for smoothing estimates using Gaussian processes.
 
 Observation Model
 Functions for modeling the observation process.
 

Functions

vector deconvolve_infections (vector shifted_cases, vector noise, int fixed, int prior)
 
vector generate_infections (vector R, int uot, vector gt_rev_pmf, array[] real initial_infections, int pop, int ht, int obs_scale, real frac_obs, int initial_as_scale)
 Generate infections using a renewal equation approach.
 
real update_infectiousness (vector infections, vector gt_rev_pmf, int seeding_time, int index)
 

Description

Functions for estimating infection trajectories.

This group contains functions for estimating and modeling infection dynamics, including implementation of the renewal equation and backcalculation approaches. Core infection estimation functions from infections.stan and related generated quantities functions.

Function Documentation

◆ deconvolve_infections()

vector deconvolve_infections ( vector shifted_cases,
vector noise,
int fixed,
int prior )

#include </github/workspace/inst/stan/functions/infections.stan>

Backcalculate infections from cases

This function estimates infections by working backwards from observed cases, applying noise to account for uncertainty in the process.

Parameters
shifted_casesVector of shifted case counts
noiseVector of noise values
fixedWhether to use fixed (1) or variable (0) noise
priorPrior type to use (0: noise only, 1: cases * noise, 2: random walk)
Returns
A vector of infection counts

Definition at line 125 of file infections.stan.

126 {
127 int t = num_elements(shifted_cases);
128 vector[t] infections = rep_vector(1e-5, t);
129 if (!fixed) {
130 vector[t] exp_noise = exp(noise);
131 if (prior == 1) {
132 infections = infections + shifted_cases .* exp_noise;
133 } else if (prior == 0) {
134 infections = infections + exp_noise;
135 } else if (prior == 2) {
136 infections[1] = infections[1] + shifted_cases[1] * exp_noise[1];
137 for (i in 2:t) {
138 infections[i] = infections[i - 1] * exp_noise[i];
139 }
140 }
141 } else {
142 infections = infections + shifted_cases;
143 }
144 return(infections);
145}

◆ generate_infections()

vector generate_infections ( vector R,
int uot,
vector gt_rev_pmf,
array[]real initial_infections,
int pop,
int ht,
int obs_scale,
real frac_obs,
int initial_as_scale )

#include </github/workspace/inst/stan/functions/infections.stan>

Generate infections using a renewal equation approach.

This function implements the renewal equation to generate a time series of infections based on reproduction numbers and the generation time distribution. It can also account for population depletion if a population size is specified.

Parameters
RVector of reproduction numbers
uotUnobserved time (seeding time)
gt_rev_pmfVector of reversed generation time PMF
initial_infectionsArray of initial infection values
popInitial susceptible population (0 for unlimited)
htHorizon time
obs_scaleWhether to scale by fraction observed (1) or not (0)
frac_obsFraction of infections that are observed
initial_as_scaleWhether initial infections are a scaling factor (1) or not (0)
Returns
A vector of infection counts

Definition at line 63 of file infections.stan.

65 {
66 // time indices and storage
67 int ot = num_elements(R);
68 int nht = ot - ht;
69 int t = ot + uot;
70 real exp_adj_Rt;
71 vector[t] infections = rep_vector(0, t);
72 vector[ot] cum_infections;
73 vector[ot] infectiousness;
74 real growth = R_to_r(R[1], gt_rev_pmf, 1e-3);
75 // Initialise infections using daily growth
76 if (initial_as_scale) {
77 infections[1] = exp(initial_infections[1] - growth * uot);
78 if (obs_scale) {
79 infections[1] = infections[1] / frac_obs;
80 }
81 } else {
82 infections[1] = exp(initial_infections[1]);
83 }
84 if (uot > 1) {
85 real exp_growth = exp(growth);
86 for (s in 2:uot) {
87 infections[s] = infections[s - 1] * exp_growth;
88 }
89 }
90 // calculate cumulative infections
91 if (pop) {
92 cum_infections[1] = sum(infections[1:uot]);
93 }
94 // iteratively update infections
95 for (s in 1:ot) {
96 infectiousness[s] = update_infectiousness(infections, gt_rev_pmf, uot, s);
97 if (pop && s > nht) {
98 exp_adj_Rt = exp(-R[s] * infectiousness[s] / (pop - cum_infections[nht]));
99 exp_adj_Rt = exp_adj_Rt > 1 ? 1 : exp_adj_Rt;
100 infections[s + uot] = (pop - cum_infections[s]) * (1 - exp_adj_Rt);
101 } else {
102 infections[s + uot] = R[s] * infectiousness[s];
103 }
104 if (pop && s < ot) {
105 cum_infections[s + 1] = cum_infections[s] + infections[s + uot];
106 }
107 }
108 return(infections);
109}
real update_infectiousness(vector infections, vector gt_rev_pmf, int seeding_time, int index)
real R_to_r(real R, vector gt_rev_pmf, real abs_tol)
Definition rt.stan:128

References R_to_r(), and update_infectiousness().

+ Here is the call graph for this function:

◆ update_infectiousness()

real update_infectiousness ( vector infections,
vector gt_rev_pmf,
int seeding_time,
int index )

#include </github/workspace/inst/stan/functions/infections.stan>

Infection Modeling Functions

This group of functions handles the generation, calculation, and backcalculation of infection time series in the model. These functions implement the core epidemiological dynamics, including the renewal equation approach. Calculate infectiousness for a single time point

This function computes the weighted sum of past infections with the generation time distribution to determine the current infectiousness.

Parameters
infectionsVector of infection counts
gt_rev_pmfVector of reversed generation time PMF
seeding_timeNumber of time steps used for seeding
indexCurrent time index (relative to seeding_time)
Returns
The infectiousness at the specified time point

Definition at line 25 of file infections.stan.

26 {
27 int gt_length = num_elements(gt_rev_pmf);
28 // work out where to start the convolution of past infections with the
29 // generation time distribution: (current_time - maximal generation time) if
30 // that is >= 1, otherwise 1
31 int inf_start = max(1, (index + seeding_time - gt_length + 1));
32 // work out where to end the convolution: current_time
33 int inf_end = (index + seeding_time);
34 // number of indices of the generation time to sum over
35 // (inf_end - inf_start + 1)
36 int pmf_accessed = min(gt_length, index + seeding_time);
37 // calculate the elements of the convolution
38 real new_inf = dot_product(
39 infections[inf_start:inf_end], tail(gt_rev_pmf, pmf_accessed)
40 );
41 return(new_inf);
42}

Referenced by calculate_Rt(), and generate_infections().

+ Here is the caller graph for this function: