![]() |
EpiNow2 Stan Functions
|
Functions for estimating reproduction numbers. More...
Subgroups | |
Estimates Smoothing | |
Functions for smoothing estimates using Gaussian processes. | |
Observation Model | |
Functions for modeling the observation process. | |
Functions | |
vector | calculate_growth (vector infections, int seeding_time) |
vector | calculate_Rt (vector infections, int seeding_time, vector gt_rev_pmf, int smooth) |
real | R_to_r (real R, vector gt_rev_pmf, real abs_tol) |
real | R_to_r_newton_step (real R, real r, vector pmf) |
void | rt_lp (array[] real initial_infections_scale, vector bp_effects, array[] real bp_sd, int bp_n, array[] int cases, real initial_infections_guess) |
vector | update_Rt (int t, real R0, vector noise, array[] int bps, vector bp_effects, int stationary) |
Update a vector of effective reproduction numbers (Rt) based on an intercept, breakpoints (i.e. a random walk), and a Gaussian process. | |
Functions for estimating reproduction numbers.
This group contains functions for estimating and processing reproduction numbers (Rt), including updating Rt values, calculating growth rates, and converting between reproduction numbers and growth rates. Includes functions from rt.stan and related generated quantities.
vector calculate_growth | ( | vector | infections, |
int | seeding_time ) |
#include </github/workspace/inst/stan/functions/generated_quantities.stan>
Calculate growth rate
This function calculates the growth rate from a time series of infections by taking the log difference between consecutive time points.
infections | Vector of infection counts |
seeding_time | Number of time steps used for seeding |
Definition at line 63 of file generated_quantities.stan.
vector calculate_Rt | ( | vector | infections, |
int | seeding_time, | ||
vector | gt_rev_pmf, | ||
int | smooth ) |
#include </github/workspace/inst/stan/functions/generated_quantities.stan>
Generated Quantities Functions
Functions for calculating additional quantities from model outputs. Calculate Rt directly from inferred infections
This function estimates the reproduction number (Rt) using the Cori et al. approach, directly from a time series of infections. Optionally applies smoothing.
infections | Vector of infection counts |
seeding_time | Number of time steps used for seeding |
gt_rev_pmf | Vector of reversed generation time PMF |
smooth | Number of time steps to use for smoothing (0 for no smoothing) |
Definition at line 21 of file generated_quantities.stan.
References update_infectiousness().
real R_to_r | ( | real | R, |
vector | gt_rev_pmf, | ||
real | abs_tol ) |
#include </github/workspace/inst/stan/functions/rt.stan>
Estimate the growth rate r from reproduction number R
This function uses the Newton method to solve for the growth rate r that corresponds to a given reproduction number R, using the generation time distribution.
Code is based on Julia code from https://github.com/CDCgov/Rt-without-renewal/blob/d6344cc6e451e3e6c4188e4984247f890ae60795/EpiAware/test/predictive_checking/fast_approx_for_r.jl under Apache license 2.0.
R | Reproduction number |
gt_rev_pmf | Reversed probability mass function of the generation time |
abs_tol | Absolute tolerance for the Newton solver |
Definition at line 128 of file rt.stan.
References R_to_r_newton_step().
Referenced by generate_infections().
real R_to_r_newton_step | ( | real | R, |
real | r, | ||
vector | pmf ) |
#include </github/workspace/inst/stan/functions/rt.stan>
Helper function for calculating r from R using Newton's method
This function performs a single Newton step in the iterative calculation of the growth rate r from the reproduction number R.
Code is based on Julia code from https://github.com/CDCgov/Rt-without-renewal/blob/d6344cc6e451e3e6c4188e4984247f890ae60795/EpiAware/test/predictive_checking/fast_approx_for_r.jl under Apache license 2.0.
R | Reproduction number |
r | Current estimate of the growth rate |
pmf | Generation time probability mass function (first index: 0) |
Definition at line 101 of file rt.stan.
Referenced by R_to_r().
void rt_lp | ( | array[]real | initial_infections_scale, |
vector | bp_effects, | ||
array[]real | bp_sd, | ||
int | bp_n, | ||
array[]int | cases, | ||
real | initial_infections_guess ) |
#include </github/workspace/inst/stan/functions/rt.stan>
Calculate the log-probability of the reproduction number (Rt) priors
This function adds the log density contributions from priors on initial infections and breakpoint effects to the target.
initial_infections_scale | Array of initial infection values |
bp_effects | Vector of breakpoint effects |
bp_sd | Array of breakpoint standard deviations |
bp_n | Number of breakpoints |
cases | Array of observed case counts |
initial_infections_guess | Initial guess for infections based on cases |
Definition at line 73 of file rt.stan.
vector update_Rt | ( | int | t, |
real | R0, | ||
vector | noise, | ||
array[]int | bps, | ||
vector | bp_effects, | ||
int | stationary ) |
#include </github/workspace/inst/stan/functions/rt.stan>
Update a vector of effective reproduction numbers (Rt) based on an intercept, breakpoints (i.e. a random walk), and a Gaussian process.
Reproduction Number (Rt) Functions
This group of functions handles the calculation, updating, and conversion of reproduction numbers in the model. The reproduction number represents the average number of secondary infections caused by a single infected individual.
t | Length of the time series |
R0 | Initial reproduction number |
noise | Vector of Gaussian process noise values |
bps | Array of breakpoint indices |
bp_effects | Vector of breakpoint effects |
stationary | Whether the Gaussian process is stationary (1) or non-stationary (0) |
Definition at line 25 of file rt.stan.