EpiNow2 Stan Functions
Loading...
Searching...
No Matches
Secondary Reports Estimation

Functions for estimating secondary epidemiological reports. More...

+ Collaboration diagram for Secondary Reports Estimation:

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.
 

Description

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.

Function Documentation

◆ calculate_secondary()

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.

Parameters
scaled_reportsVector of scaled primary reports
conv_reportsVector of convolved primary reports
obsArray of observed secondary reports
cumulativeWhether to use cumulative target (1) or not (0)
historicWhether to use historical primary reports (1) or not (0)
primary_hist_additiveWhether historical primary reports are additive (1) or subtractive (0)
currentWhether to use current primary reports (1) or not (0)
primary_current_additiveWhether current primary reports are additive (1) or subtractive (0)
predictNumber of time points to predict
Returns
A vector of secondary reports

Definition at line 31 of file secondary.stan.

35 {
36 int t = num_elements(scaled_reports);
37 vector[t] secondary_reports = rep_vector(0.0, t);
38 // if predicting and using a cumulative target
39 // combine reports with previous secondary data
40 for (i in 1:t) {
41 // update cumulative target
42 if (cumulative && i > 1) {
43 if (i > predict) {
44 secondary_reports[i] = secondary_reports[i - 1];
45 } else{
46 secondary_reports[i] = obs[i - 1];
47 }
48 }
49 // update based on previous primary reports
50 if (historic) {
51 if (primary_hist_additive) {
52 secondary_reports[i] += conv_reports[i];
53 } else{
54 secondary_reports[i] = fmax(0, secondary_reports[i] - conv_reports[i]);
55 }
56 }
57 // update based on current primary reports
58 if (current) {
59 if (primary_current_additive) {
60 secondary_reports[i] += scaled_reports[i];
61 } else{
62 secondary_reports[i] -= scaled_reports[i];
63 }
64 }
65 secondary_reports[i] = 1e-6 + secondary_reports[i];
66 }
67 return(secondary_reports);
68}