![]() |
EpiNow2 Stan Functions
|
Functions for estimating infection trajectories. More...
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) |
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.
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.
shifted_cases | Vector of shifted case counts |
noise | Vector of noise values |
fixed | Whether to use fixed (1) or variable (0) noise |
prior | Prior type to use (0: noise only, 1: cases * noise, 2: random walk) |
Definition at line 125 of file infections.stan.
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.
R | Vector of reproduction numbers |
uot | Unobserved time (seeding time) |
gt_rev_pmf | Vector of reversed generation time PMF |
initial_infections | Array of initial infection values |
pop | Initial susceptible population (0 for unlimited) |
ht | Horizon time |
obs_scale | Whether to scale by fraction observed (1) or not (0) |
frac_obs | Fraction of infections that are observed |
initial_as_scale | Whether initial infections are a scaling factor (1) or not (0) |
Definition at line 63 of file infections.stan.
References R_to_r(), and 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.
infections | Vector of infection counts |
gt_rev_pmf | Vector of reversed generation time PMF |
seeding_time | Number of time steps used for seeding |
index | Current time index (relative to seeding_time) |
Definition at line 25 of file infections.stan.
Referenced by calculate_Rt(), and generate_infections().