EpiNow2 Stan Functions
Loading...
Searching...
No Matches
secondary.stan
Go to the documentation of this file.
1/**
2 * Secondary Reports Functions
3 *
4 * This group of functions handles the calculation and manipulation of secondary
5 * reports in the model. Secondary reports are derived from primary reports through
6 * various transformations and can represent different epidemiological quantities.
7 *
8 * @ingroup secondary_reports_estimation
9 */
10
11/**
12 * @ingroup secondary_reports_estimation
13 * @brief Calculate secondary reports from primary reports
14 *
15 * This function calculates secondary reports based on primary reports,
16 * considering various options for how to combine historical and current data.
17 * It supports both cumulative and non-cumulative targets, and additive or
18 * subtractive relationships between primary and secondary reports.
19 *
20 * @param scaled_reports Vector of scaled primary reports
21 * @param conv_reports Vector of convolved primary reports
22 * @param obs Array of observed secondary reports
23 * @param cumulative Whether to use cumulative target (1) or not (0)
24 * @param historic Whether to use historical primary reports (1) or not (0)
25 * @param primary_hist_additive Whether historical primary reports are additive (1) or subtractive (0)
26 * @param current Whether to use current primary reports (1) or not (0)
27 * @param primary_current_additive Whether current primary reports are additive (1) or subtractive (0)
28 * @param predict Number of time points to predict
29 * @return A vector of secondary reports
30 */
32 vector scaled_reports, vector conv_reports, array[] int obs,
33 int cumulative, int historic, int primary_hist_additive,
34 int current, int primary_current_additive, int predict
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}
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.