![]() |
EpiNow2 Stan Functions
|
Functions for estimating secondary epidemiological reports. More...
Subgroups | |
Estimates Smoothing | |
Functions for smoothing estimates using Gaussian processes. | |
Observation Model | |
Functions for modeling the observation process. | |
Functions | |
vector | calculate_secondary (vector scaled_reports, vector conv_reports, array[] int obs, int cumulative, int historic, int primary_hist_additive, int current, int primary_current_additive, int predict) |
Calculate secondary reports from primary reports. | |
Functions for estimating secondary epidemiological reports.
This group contains functions from secondary.stan for estimating secondary epidemiological reports based on primary reports, considering various options for combining historical and current data.
vector calculate_secondary | ( | vector | scaled_reports, |
vector | conv_reports, | ||
array[]int | obs, | ||
int | cumulative, | ||
int | historic, | ||
int | primary_hist_additive, | ||
int | current, | ||
int | primary_current_additive, | ||
int | predict ) |
#include </github/workspace/inst/stan/functions/secondary.stan>
Calculate secondary reports from primary reports.
Secondary Reports Functions
This group of functions handles the calculation and manipulation of secondary reports in the model. Secondary reports are derived from primary reports through various transformations and can represent different epidemiological quantities.
This function calculates secondary reports based on primary reports, considering various options for how to combine historical and current data. It supports both cumulative and non-cumulative targets, and additive or subtractive relationships between primary and secondary reports.
scaled_reports | Vector of scaled primary reports |
conv_reports | Vector of convolved primary reports |
obs | Array of observed secondary reports |
cumulative | Whether to use cumulative target (1) or not (0) |
historic | Whether to use historical primary reports (1) or not (0) |
primary_hist_additive | Whether historical primary reports are additive (1) or subtractive (0) |
current | Whether to use current primary reports (1) or not (0) |
primary_current_additive | Whether current primary reports are additive (1) or subtractive (0) |
predict | Number of time points to predict |
Definition at line 31 of file secondary.stan.