EpiNow2 Stan Functions
Loading...
Searching...
No Matches

Functions for modeling the observation process. More...

+ Collaboration diagram for Observation Model:

Functions

vector accumulate_reports (vector reports, array[] int accumulate)
 
vector day_of_week_effect (vector reports, array[] int day_of_week, vector effect)
 
vector report_log_lik (array[] int cases, vector reports, real dispersion, int model_type, real weight)
 
void report_lp (array[] int cases, array[] int case_times, vector reports, real dispersion, int model_type, real weight)
 
array[] int report_rng (vector reports, real dispersion, int model_type)
 
vector scale_obs (vector reports, real frac_obs)
 
vector truncate_obs (vector reports, vector trunc_rev_cmf, int reconstruct)
 
void truncation_lp (array[] real truncation_mean, array[] real truncation_sd, array[] real trunc_mean_mean, array[] real trunc_mean_sd, array[] real trunc_sd_mean, array[] real trunc_sd_sd)
 

Description

Functions for modeling the observation process.

This group contains functions related to how infections or reports are observed, including day-of-week effects, reporting delays, and various likelihood models.

Function Documentation

◆ accumulate_reports()

vector accumulate_reports ( vector reports,
array[]int accumulate )

#include </github/workspace/inst/stan/functions/observation_model.stan>

Accumulate reports according to a binary flag at each time point

This function accumulates reports according to a binary flag at each time point.

Parameters
reportsVector of expected reports.
accumulateArray of integers indicating, for each time point, whether to accumulate or not.
Returns
A vector of accumulated reports.

Definition at line 161 of file observation_model.stan.

161 {
162 int ot_h = num_elements(reports); // number of reporting time points modelled
163 vector[ot_h] accumulated_reports = reports;
164 for (i in 1:(ot_h - 1)) {
165 if (accumulate[i]) { // first observation gets ignored when accumulating
166 accumulated_reports[i + 1] += accumulated_reports[i];
167 }
168 }
169 return accumulated_reports;
170}

◆ day_of_week_effect()

vector day_of_week_effect ( vector reports,
array[]int day_of_week,
vector effect )

#include </github/workspace/inst/stan/functions/observation_model.stan>

Apply day of the week effect to reports

This function applies a day of the week effect to a vector of reports.

Parameters
reportsVector of reports to be adjusted.
day_of_weekArray of integers representing the day of the week for each report.
effectVector of day of week effects.
Returns
A vector of reports adjusted for day of the week effects.

Definition at line 15 of file observation_model.stan.

16 {
17 int wl = num_elements(effect);
18 vector[wl] scaled_effect = wl * effect;
19 return reports .* scaled_effect[day_of_week];
20}

◆ report_log_lik()

vector report_log_lik ( array[]int cases,
vector reports,
real dispersion,
int model_type,
real weight )

#include </github/workspace/inst/stan/functions/observation_model.stan>

Calculate log likelihood for reported cases

This function calculates the log likelihood for reported cases based on the specified model type.

Parameters
casesArray of integer observed cases.
reportsVector of expected reports.
dispersionArray of real values for reporting overdispersion.
model_typeInteger indicating the model type (0 for Poisson, >0 for Negative Binomial).
weightReal value for weighting the log likelihood contribution.
Returns
A vector of log likelihoods for each time point.

Definition at line 189 of file observation_model.stan.

190 {
191 int t = num_elements(reports);
192 vector[t] log_lik;
193
194 // defer to poisson if phi is large, to avoid overflow
195 if (model_type == 0) {
196 for (i in 1:t) {
197 log_lik[i] = poisson_lpmf(cases[i] | reports[i]) * weight;
198 }
199 } else {
200 real phi = inv_square(dispersion);
201 for (i in 1:t) {
202 log_lik[i] = neg_binomial_2_lpmf(
203 cases[i] | reports[i], dispersion
204 ) * weight;
205 }
206 }
207 return(log_lik);
208}

◆ report_lp()

void report_lp ( array[]int cases,
array[]int case_times,
vector reports,
real dispersion,
int model_type,
real weight )

#include </github/workspace/inst/stan/functions/observation_model.stan>

Update log density for reported cases

This function updates the log density for reported cases based on the specified model type.

Parameters
casesArray of integer observed cases.
case_timesArray of integer time indices for observed cases.
reportsVector of expected reports.
dispersionReal values for reporting overdispersion.
model_typeInteger indicating the model type (0 for Poisson, >0 for Negative Binomial).
weightReal value for weighting the log density contribution.

Definition at line 125 of file observation_model.stan.

126 {
127 int n = num_elements(case_times); // number of observations
128 vector[n] obs_reports = reports[case_times]; // reports at observation time
129 if (model_type) {
130 real phi = inv_square(dispersion);
131 if (weight == 1) {
132 cases ~ neg_binomial_2(obs_reports, phi);
133 } else {
134 target += neg_binomial_2_lpmf(
135 cases | obs_reports, phi
136 ) * weight;
137 }
138 } else {
139 if (weight == 1) {
140 cases ~ poisson(obs_reports);
141 } else {
142 target += poisson_lpmf(cases | obs_reports) * weight;
143 }
144 }
145}

◆ report_rng()

array[] int report_rng ( vector reports,
real dispersion,
int model_type )

#include </github/workspace/inst/stan/functions/observation_model.stan>

Generate random samples of reported cases

This function generates random samples of reported cases based on the specified model type.

Parameters
reportsVector of expected reports.
dispersionReal value for reporting overdispersion.
model_typeInteger indicating the model type (0 for Poisson, >0 for Negative Binomial).
Returns
An array of integer sampled reports.

Definition at line 257 of file observation_model.stan.

257 {
258 int t = num_elements(reports);
259 array[t] int sampled_reports;
260 real phi = 1e5;
261 if (model_type) {
262 phi = inv_square(dispersion);
263 }
264
265 for (s in 1:t) {
266 sampled_reports[s] = neg_binomial_2_safe_rng(reports[s], phi);
267 }
268 return(sampled_reports);
269}
int neg_binomial_2_safe_rng(real mu, real phi)

References neg_binomial_2_safe_rng().

+ Here is the call graph for this function:

◆ scale_obs()

vector scale_obs ( vector reports,
real frac_obs )

#include </github/workspace/inst/stan/functions/observation_model.stan>

Scale observations by fraction reported

This function scales a vector of reports by a fraction observed.

Parameters
reportsVector of reports to be scaled.
frac_obsReal value representing the fraction observed.
Returns
A vector of scaled reports.

Definition at line 34 of file observation_model.stan.

34 {
35 int t = num_elements(reports);
36 vector[t] scaled_reports;
37 scaled_reports = reports * frac_obs;
38 return(scaled_reports);
39}

◆ truncate_obs()

vector truncate_obs ( vector reports,
vector trunc_rev_cmf,
int reconstruct )

#include </github/workspace/inst/stan/functions/observation_model.stan>

Truncate observed data by a truncation distribution

This function truncates a vector of reports based on a truncation distribution.

Parameters
reportsVector of reports to be truncated.
trunc_rev_cmfVector representing the reverse cumulative mass function of the truncation distribution.
reconstructInteger flag indicating whether to reconstruct (1) or truncate (0) the data.
Returns
A vector of truncated reports.

Definition at line 57 of file observation_model.stan.

57 {
58 int t = num_elements(reports);
59 int trunc_max = num_elements(trunc_rev_cmf);
60 vector[t] trunc_reports = reports;
61 // Calculate cmf of truncation delay
62 int joint_max = min(t, trunc_max);
63 int first_t = t - joint_max + 1;
64 int first_trunc = trunc_max - joint_max + 1;
65
66 // Apply cdf of truncation delay to truncation max last entries in reports
67 if (reconstruct) {
68 trunc_reports[first_t:t] ./= trunc_rev_cmf[first_trunc:trunc_max];
69 } else {
70 trunc_reports[first_t:t] .*= trunc_rev_cmf[first_trunc:trunc_max];
71 }
72 return(trunc_reports);
73}

◆ truncation_lp()

void truncation_lp ( array[]real truncation_mean,
array[]real truncation_sd,
array[]real trunc_mean_mean,
array[]real trunc_mean_sd,
array[]real trunc_sd_mean,
array[]real trunc_sd_sd )

#include </github/workspace/inst/stan/functions/observation_model.stan>

Update log density for truncation distribution priors

This function updates the log density for truncation distribution priors.

Parameters
truncation_meanArray of real values for truncation mean.
truncation_sdArray of real values for truncation standard deviation.
trunc_mean_meanArray of real values for mean of truncation mean prior.
trunc_mean_sdArray of real values for standard deviation of truncation mean prior.
trunc_sd_meanArray of real values for mean of truncation standard deviation prior.
trunc_sd_sdArray of real values for standard deviation of truncation standard deviation prior.

Definition at line 93 of file observation_model.stan.

95 {
96 int truncation = num_elements(truncation_mean);
97 if (truncation) {
98 if (trunc_mean_sd[1] > 0) {
99 // uncertain mean
100 truncation_mean ~ normal(trunc_mean_mean, trunc_mean_sd);
101 }
102 if (trunc_sd_sd[1] > 0) {
103 // uncertain sd
104 truncation_sd ~ normal(trunc_sd_mean, trunc_sd_sd);
105 }
106 }
107}