Skip to contents

1 Introduction

Specification document - a mathematical description of models used by bage.

Note: some features described here have not been implemented yet.

2 Input data

  • outcome variable: events, numbers of people, or some sort of measure on a continuous variable such as income or expenditure
  • exposure/size/weights
  • disagg by one or more variables. Almost always includes age, sex/gender, and time. May include other variables eg region, ethnicity, education.
  • not all combinations of variables present; may be some missing values

3 Models

3.1 Poisson likelihood

Let \(y_i\) be a count of events in cell \(i = 1, \cdots, n\) and let \(w_i\) be the corresponding exposure measure, with the possibility that \(w_i \equiv 1\). The likelihood under the Poisson model is then \[\begin{align} y_i & \sim \text{Poisson}(\gamma_i w_i) \tag{3.1} \\ \gamma_i & \sim \text{Gamma}\left(\xi^{-1}, (\mu_i \xi)^{-1}\right), \tag{3.2} \end{align}\] using the shape-rates parameterisation of the Gamma distribution. Parameter \(\xi\) governs dispersion, with \[\begin{equation} \text{var}(\gamma_i \mid \mu_i, \xi) = \xi \mu_i^2 \end{equation}\] and \[\begin{equation} \text{var}(y_i \mid \mu_i, \xi, w_i) = (1 + \xi \mu_i w_i ) \times \mu_i w_i. \end{equation}\] We allow \(\xi\) to equal 0, in which case the model reduces to \[\begin{equation} y_i \sim \text{Poisson}(\mu_i w_i). \end{equation}\]

For \(\xi > 0\), Equations (3.1) and (3.2) are equivalent to \[\begin{equation} y_i \sim \text{NegBinom}\left(\xi^{-1}, (1 + \mu_i w_i \xi)^{-1}\right) \end{equation}\] (Norton, Christen, and Fox 2018; Simpson 2022). This is the format we use internally for estimation. When values for \(\gamma_i\) are needed, we generate them on the fly, using the fact that \[\begin{equation} \gamma_i \mid y_i, w_i, \mu_i, \xi \sim \text{Gamma}\left(y_i + \xi^{-1}, w_i + (\xi \mu_i)^{-1}\right). \end{equation}\]

3.2 Binomial likelihood

The likelihood under the binomial model is \[\begin{align} y_i & \sim \text{Binomial}(w_i, \gamma_i) \tag{3.3} \\ \gamma_i & \sim \text{Beta}\left(\xi^{-1} \mu_i, \xi^{-1}(1 - \mu_i)\right). \tag{3.4} \end{align}\] Parameter \(\xi\) again governs dispersion, with \[\begin{equation} \text{var}(\gamma_i \mid \mu_i, \xi) = \frac{\xi}{1 + \xi} \times \mu_i (1 -\mu_i) \end{equation}\] and \[\begin{equation} \text{var}(y_i \mid w_i, \mu_i, \xi) = \frac{\xi w_i + 1}{\xi + 1} \times w_i \mu_i (1 - \mu_i). \end{equation}\]

We allow \(\xi\) to equal 0, in which case the model reduces to \[\begin{equation} y_i \sim \text{Binom}(w_i, \mu_i). \end{equation}\] Equations (3.3) and (3.4) are equivalent to \[\begin{equation} y_i \sim \text{BetaBinom}\left(w_i, \xi^{-1} \mu_i, \xi^{-1} (1 - \mu_i) \right), \end{equation}\] which is what we use internally. Values for \(\gamma_i\) can be generated using \[\begin{equation} \gamma_i \mid y_i, w_i, \mu_i, \xi \sim \text{Beta}\left(y_i + \xi^{-1} \mu_i, w_i - y_i + \xi^{-1}(1-\mu_i) \right). \end{equation}\]

3.3 Normal likelihood

The normal model is \[\begin{equation} \tilde{y}_i \sim \text{N}(\mu_i, \tilde{w}_i^{-1}\xi^2). \end{equation}\] where \(\tilde{y}_i\) is a standardized version of outcome \(y_i\), and \(\tilde{w}_i\) is a standardized version of weight \(w_i\). The standardization is carried out using \[\begin{align} \tilde{y}_i & = \frac{y_i - \bar{y}}{s} \\ \tilde{w}_i & = \frac{w_i}{\bar{w}}. \end{align}\] where \[\begin{align} \bar{y} & = \frac{\sum_{i=1}^n y_i}{n} \\ s & = \sqrt{\frac{\sum_{i=1}^n (y_i - \bar{y})^2}{n-1}} \\ \bar{w} & = \frac{\sum_{i=1}^n w_i}{n}. \end{align}\]

Standardizing allows us to apply the same priors as we use for the Poisson and binomial models.

4 Model for prior means

Let \(\pmb{\mu} = (\mu_1, \cdots, \mu_n)^{\top}\). Our model for \(\pmb{\mu}\) is \[\begin{equation} \pmb{\mu} = \sum_{m=0}^{M} \pmb{X}^{(m)} \pmb{\beta}^{(m)} + \pmb{Z} \pmb{\zeta} \tag{4.1} \end{equation}\] where

  • \(\beta^{(0)}\) is an intercept;
  • \(\pmb{\beta}^{(m)}\), \(m=1,\cdots,M\) is a vector with \(J_m\) elements describing a main effect or interaction formed from the dimensions of data \(\pmb{y}\);
  • \(\pmb{X}^{(m)}\) is an \(n \times J_m\) matrix of 1s and 0s, the \(i\)th row of which picks out the element of \(\pmb{\beta}^{(m)}\) that is used with cell \(i\);
  • \(\pmb{Z}\) is a \(n \times P\) matrix of covariates; and
  • \(\pmb{\zeta}\) is a coefficient vector with \(P\) elements.

5 Priors for Intercept, Main Effects, and Interactions

5.1 General features

5.1.1 ‘Along’ and ‘by’ dimensions

Each \(\pmb{\beta}^{(m)}\), \(m > 0\), can be a main effect, involving a single dimension, or an interaction, involving two dimensions. Some priors, when applied to an interaction, treat one dimension, referred to as the ‘along’ dimension, differently from the remaining dimensions, referred to as ‘by’ dimensions. A random walk prior (Section 5.4), for instance, consists of an independent random walk along the ‘along’ dimension, within each combination of the ‘by’ dimensions.

We use \(v = 1, \cdots, V_m\) to denote position within the ‘along’ dimension, and \(u = 1, \cdots, V_m\) to denote position within a classification formed by the ‘by’ dimensions. When there are no sum-to-zero constraints (see below), \(U_m = \prod_k d_k\) where \(d_k\) is the number of elements in the \(k\)th ‘by’ variable. When there are sum-to-zero constraints, \(U_m = \prod_k (d_k - 1)\).

If a prior involves an ‘along’ dimension but the user does not specify one, the procedure for choosing a dimension is as follows:

  • if the term involves time, use the time dimension;
  • otherwise, if the term involves age, use the age dimension;
  • otherwise, raise an error asking the user to explicitly specify a dimension.

5.1.2 Sum-to-zero constraints

Priors that involve ‘along’ dimensions can optionally include sum-to-zero constraints. If these constrains are applied, then within each element \(v\) of the ‘along’ dimension, the sum of the \(\beta_j^{(m)}\) across each ‘by’ dimension is zero. For instance, if \(\pmb{\beta}^{(m)}\) is an interaction between time, region, and sex, with time as the ‘along’ variable, then within each combination of time and region, the values for females and males sum to zero, and within each combination of time and sex, the values for regions sum to zero.

Except in the case of dynamic SVD-based priors (eg Sections 5.15), the sum-to-zero constraints are implemented internally by drawing values within an unrestricted lower-dimensional space, and then transforming to the restricted higher-dimensional space. For instance, a random walk prior for a time-region interaction with \(R\) regions consists of \(R-1\) unrestricted random walks along time, which are converted into \(R\) random walks that sum to zero across region. Matrices for transforming between the unrestricted and restricted spaces are constructed using the QR decomposition, as described in Section 1.8.1 of Wood (2017). With dynamic SVD-based priors, we draw values for the SVD coefficients with no constraints, convert these to unconstrained values for \(\pmb{\beta}^{(m)}\), and then subtract means.

5.1.3 Algorithm for assigning default priors

  • If \(\pmb{\beta}^{(m)}\) has one or two elements, assign \(\pmb{\beta}^{(m)}\) a fixed-normal prior (Section 5.3);
  • otherwise, if \(\pmb{\beta}^{(m)}\) involves time, assign \(\pmb{\beta}^{(m)}\) a random walk prior (Section 5.4) along the time dimension;
  • otherwise, if \(\pmb{\beta}^{(m)}\) involves age, assign \(\pmb{\beta}^{(m)}\) a random walk prior (Section 5.4) along the age dimension;
  • otherwise, assign \(\pmb{\beta}^{(m)}\) a normal prior (Section 5.2)

The intercept term \(\pmb{\beta}^{(0)}\) can only be given a fixed-normal prior (Section 5.3) or a Known prior (Section 5.19).

5.2 N()

5.2.1 Model

Exchangeable normal

\[\begin{align} \beta_j^{(m)} & \sim \text{N}\left(0, \tau_m^2 \right) \\ \tau_m & \sim \text{N}^+\left(0, A_{\tau}^{(m)2}\right) \end{align}\]

5.2.2 Contribution to posterior density

\[\begin{equation} \text{N}(\tau_m \mid 0, A_{\tau}^{(m)2}) \prod_{j=1}^{J_m} \text{N}(\beta_j^{(m)} \mid 0, \tau_m^2) \end{equation}\]

5.2.3 Forecasting

\[\begin{equation} \beta_{J_m+h+1}^{(m)} \sim \text{N}(0, \tau_m^2) \end{equation}\]

5.2.4 Code

N(s = 1)
  • s is \(A_{\tau}^{(m)}\). Defaults to 1.

5.3 NFix()

5.3.1 Model

Exchangeable normal, with fixed standard deviation

\[\begin{equation} \beta_j^{(m)} \sim \text{N}\left(0, A_{\beta}^{(m)2}\right) \end{equation}\]

5.3.2 Contribution to posterior density

\[\begin{equation} \prod_{j=1}^{J_m} \text{N}(\beta_j^{(m)} \mid 0, A_{\beta}^{(m)2}) \end{equation}\]

5.3.3 Forecasting

\[\begin{equation} \beta_{J_m+h+1}^{(m)} \sim \text{N}(0, A_{\beta}^{(m)2}) \end{equation}\]

5.3.4 Code

NFix(sd = 1)
  • sd is \(A_{\tau}^{(m)}\). Defaults to 1.

5.4 RW()

5.4.1 Model

Random walk

\[\begin{align} \beta_{u,1}^{(m)} & = 0 \\ \beta_{u,v}^{(m)} & \sim \text{N}(\beta_{u,v-1}^{(m)}, \tau_m^2), \quad v = 2, \cdots, V_m \\ \tau_m & \sim \text{N}^+\left(0, A_{\tau}^{(m)2}\right) \end{align}\]

When \(U_m > 1\), sum-to-zero constraints (Section 5.1.2) can be applied.

5.4.2 Contribution to posterior density

\[\begin{equation} \text{N}(\tau_m \mid 0, A_{\tau}^{(m)2}) \prod_{u=1}^{U_m} \text{N}(\beta_{u,2}^{(m)} \mid 0, \tau_m^2) \prod_{v=3}^{V_m} \text{N}\left(\beta_{uv}^{(m)} \mid \beta_{u,v-1}^{(m)}, \tau_m^2 \right) \end{equation}\]

5.4.3 Forecasting

\[\begin{equation} \beta_{u,V_m+h}^{(m)} \sim \text{N}(\beta_{u,V_m+h-1}^{(m)}, \tau_m^2) \end{equation}\]

If the prior includes sum-to-zero constraints, means are subtracted from the forecasted values within each combination of ‘along’ and ‘by’ variables.

5.4.4 Code

RW(s = 1, along = NULL, zero_sum = TRUE)
  • s is \(A_{\tau}^{(m)}\). Defaults to 1.
  • along used to identify ‘along’ and ‘by’ dimensions.
  • if zero_sum is TRUE, sum-to-zero constraints are applied.

5.5 RW2()

5.5.1 Model

Second-order random walk

\[\begin{align} \beta_{u,1}^{(m)} & = 0 \\ \beta_{u,2}^{(m)} & \sim \text{N}\left(0, (A_{\eta}^{(m)})^2\right) \\ \beta_{u,v}^{(m)} & \sim \text{N}\left(2 \beta_{u,v-1}^{(m)} - \beta_{u,v-2}^{(m)}, \tau_m^2\right), \quad v = 3, \cdots, V_m \\ \tau_m & \sim \text{N}^+\left(0, (A_{\tau}^{(m)})^2\right) \end{align}\]

When \(U_m > 1\), sum-to-zero constraints (Section 5.1.2) can be applied.

5.5.2 Contribution to posterior density

\[\begin{equation} \text{N}(\tau_m \mid 0, A_{\tau}^{(m)2}) \prod_{u=1}^{U_m} \text{N}(\beta_{u,2}^{(m)} \mid 0, (A_{\eta}^{(m)})^2) \text{N}(\beta_{u,3}^{(m)} \mid 2 \beta_{u,2}^{(m)}, \tau_m^2) \prod_{v=4}^{V_m} \text{N}\left(\beta_{u,v}^{(m)} \mid 2 \beta_{u,v-1}^{(m)} - \beta_{u,v-2}^{(m)}, \tau_m^2 \right) \end{equation}\]

5.5.3 Forecasting

\[\begin{equation} \beta_{u,V_m+h}^{(m)} \sim \text{N}(2 \beta_{u,V_m+h-1}^{(m)} - \beta_{u,V_m+h-2}^{(m)}, \tau_m^2) \end{equation}\]

If the prior includes sum-to-zero constraints, means are subtracted from the forecasted values within each combination of ‘along’ and ‘by’ variables.

5.5.4 Code

RW2(s = 1, sd = 1, along = NULL, zero_sum = TRUE)
  • s is \(A_{\tau}^{(m)}\)
  • sd is \(A_{\eta}^{(m)}\)
  • along used to identify ‘along’ and ‘by’ dimensions
  • if zero_sum is TRUE, sum-to-zero constraints are applied

5.6 RW_Seas()

5.6.1 Model

Random walk with seasonal effect

\[\begin{align} \beta_{u,v}^{(m)} & = \alpha_{u,v} + \lambda_{u,s_v} \\ \alpha_{u,1}^{(m)} & = 0 \\ \alpha_{u,v}^{(m)} & \sim \text{N}(\alpha_{u,v-1}^{(m)}, \tau_m^2), \quad v = 2, \cdots, V_m \\ \lambda_{u,v}^{(m)} & \sim \text{N}(0, A_{\lambda}^{(m)}), \quad v = 1, \cdots, S_m - 1 \\ \lambda_{u,v}^{(m)} & = \sum_{s=1}^{S_m-1} \lambda_{u,v}^{(m)}, \quad v = S_m,\; 2S_m, \cdots \\ \lambda_{u,v}^{(m)} & \sim \text{N}(\lambda_{u,v-S_m}^{(m)}, \omega_m^2), \quad \text{otherwise} \\ \tau_m & \sim \text{N}^+\left(0, A_{\tau}^{(m)2}\right) \\ \omega_m & \sim \text{N}^+\left(0, A_{\omega}^{(m)2}\right) \end{align}\]

Scale parameter \(A_{\omega}^{(m)2}\) can be set to zero, implying that seasonal effect for each season does not change over time.

When \(U_m > 1\), sum-to-zero constraints (Section 5.1.2) can be applied.

5.6.2 Contribution to posterior density

\[\begin{equation} \begin{split} & \text{N}(\tau_m \mid 0, A_{\tau}^{(m)2}) \text{N}(\omega_m \mid 0, A_{\omega}^{(m)2}) \\ \quad \times & \prod_{u=1}^{U_m} \left( \text{N}(\alpha_{u,2}^{(m)} \mid 0, \tau_m^2 ) \prod_{v=3}^{V_m} \text{N}(\alpha_{u,v}^{(m)} \mid \alpha_{u,v-1}^{(m)}, \tau_m^2 ) \prod_{v=1}^{S_m-1} \text{N}(\lambda_{u,v}^{(m)} \mid 0, (A_{\lambda}^{(m)})^2) \\ \prod_{v > S_m, \; v \;\text{mod}\; S_m \neq 0}^{V_m} \text{N}(\lambda_{u,v}^{(m)} \mid \lambda_{u,v-S_m}^{(m)}, \omega_m^2) \right) \end{split} \end{equation}\]

5.6.3 Forecasting

\[\begin{align} \alpha_{J_m+h}^{(m)} & \sim \text{N}(\alpha_{J_m+h-1}^{(m)}, \tau_m^2) \\ \lambda_{J_m+h}^{(m)} & \sim \text{N}(\lambda_{J_m+h-S_m}^{(m)}, \omega_m^2) \\ \beta_{J_m+h}^{(m)} & = \alpha_{J_m+h}^{(m)} + \lambda_{J_m+h}^{(m)} \end{align}\]

5.6.4 Code

RW_Seas(n, s = 1, s_seas = 1, sd_seas, along = NULL, zero_sum = FALSE)
  • n_seas is \(S_m\)
  • s is \(A_{\tau}^{(m)}\)
  • s_seas is \(A_{\omega}^{(m)}\)
  • sd_seas is \(A_{\lambda}^{(m)}\)
  • along used to identify ‘along’ and ‘by’ dimensions
  • if zero_sum is TRUE, sum-to-zero constraints are applied

5.7 RW2_Seas()

5.7.1 Model

Second-order random work, with seasonal effect

\[\begin{align} \beta_{u,v}^{(m)} & = \alpha_{u,v} + \lambda_{u,s_v} \\ \alpha_{u,1}^{(m)} & = 0 \\ \alpha_{u,2}^{(m)} & \sim \text{N}\left(0, (A_{\eta}^{(m)})^2\right) \\ \alpha_{u,v}^{(m)} & \sim \text{N}(2 \alpha_{u,v-1}^{(m)} - \alpha_{u,v-2}^{(m)}, \tau_m^2), \quad v = 3, \cdots, V_m \\ \lambda_{u,v}^{(m)} & \sim \text{N}(0, A_{\lambda}^{(m)}), \quad v = 1, \cdots, S_m - 1 \\ \lambda_{u,v}^{(m)} & = \sum_{s=1}^{S_m-1} \lambda_{u,v}^{(m)}, \quad v = S_m,\; 2S_m, \cdots \\ \lambda_{u,v}^{(m)} & \sim \text{N}(\lambda_{u,v-S_m}^{(m)}, \omega_m^2), \quad \text{otherwise} \\ \tau_m & \sim \text{N}^+\left(0, A_{\tau}^{(m)2}\right) \\ \omega_m & \sim \text{N}^+\left(0, A_{\omega}^{(m)2}\right) \end{align}\]

Scale parameter \(A_{\omega}^{(m)2}\) can be set to zero, implying that seasonal effect for each season does not change over time.

When \(U_m > 1\), sum-to-zero constraints (Section 5.1.2) can be applied.

5.7.2 Contribution to posterior density

\[\begin{equation} \begin{split} & \text{N}(\tau_m \mid 0, A_{\tau}^{(m)2}) \text{N}(\omega_m \mid 0, A_{\omega}^{(m)2}) \\ \quad \times & \prod_{u=1}^{U_m} \left( \text{N}(\alpha_{u,2}^{(m)} \mid 0, (A_{\eta}^{(m)})^2 ) \prod_{v=3}^{V_m} \text{N}(\alpha_{u,v}^{(m)} \mid 2 \alpha_{u,v-1}^{(m)} - \alpha_{u,v-2}^{(m)}, \tau_m^2 ) \prod_{v=1}^{S_m-1} \text{N}(\lambda_{u,v}^{(m)} \mid 0, (A_{\lambda}^{(m)})^2) \\ \prod_{v > S_m, \; v \;\text{mod}\; S_m \neq 0}^{V_m} \text{N}(\lambda_{u,v}^{(m)} \mid \lambda_{u,v-S_m}^{(m)}, \omega_m^2) \right) \end{split} \end{equation}\]

5.7.3 Forecasting

\[\begin{align} \alpha_{J_m+h}^{(m)} & \sim \text{N}(2 \alpha_{J_m+h-1}^{(m)} - \alpha_{J_m+h-2}^{(m)}, \tau_m^2) \\ \lambda_{J_m+h}^{(m)} & \sim \text{N}(\lambda_{J_m+h-S_m}^{(m)}, \omega_m^2) \\ \beta_{J_m+h}^{(m)} & = \alpha_{J_m+h}^{(m)} + \lambda_{J_m+h}^{(m)} \end{align}\]

5.7.4 Code

RW2_Seas(n, s = 1, s_seas = 1, along = NULL)
  • n is \(S_m\)
  • s is \(A_{\tau}^{(m)}\)
  • s_seas is \(A_{\omega}^{(m)}\)
  • along used to identify ‘along’ and ‘by’ dimensions

5.8 AR()

5.8.1 Model

\[\begin{equation} \beta_{u,v}^{(m)} \sim \text{N}\left(\phi_1^{(m)} \beta_{u,v-1}^{(m)} + \cdots + \phi_{K_m}^{(m)} \beta_{u,v-{K_m}}^{(m)}, \omega_m^2\right), \quad u = 1, \cdots, U_m, \quad v = K_m + 1, \cdots, V_m. \end{equation}\] Internally, TMB derives values for \(\beta_{u,v}^{(m)}, v = 1, \cdots, K_m\), and for \(\omega_m\), that imply a stationary distribution, and that give every term \(\beta_{u,v}^{(m)}\) the same marginal variance. We denote this marginal variance \(\tau_m^2\), and assign it a prior \[\begin{equation} \tau_m \sim \text{N}^+(0, A_{\tau}^{(m)2}). \end{equation}\] Each of the individual \(\phi_k^{(m)}\) is restricted to the interval \((-1, 1)\), and the \(\phi_k^{(m)}\) are jointly restricted to values that yield stationary models. Let \[\begin{equation} r^{(m)} = \sqrt{\phi_1^{(m)2} + \cdots + \phi_{K_m}^{(m)2}}. \end{equation}\] We assign \(r^{(m)}\) the prior \[\begin{equation} r^{(m)} \sim \text{Beta}(2, 2). \end{equation}\]

5.8.2 Contribution to posterior density

\[\begin{equation} \text{N}^+\left(\tau_m \mid 0, A_{\tau}^{(m)2} \right) \text{Beta}\left( r^{(m)} \mid 2, 2 \right) \prod_{u=1}^{U_m} p\left( \beta_{u,1}^{(m)}, \cdots, \beta_{u,V_m}^{(m)} \mid \phi_1^{(m)}, \cdots, \phi_{K_m}^{(m)}, \tau_m \right) \end{equation}\] where \(p\left( \beta_{u,1}^{(m)}, \cdots, \beta_{u,V_m}^{(m)} \mid \phi_1^{(m)}, \cdots, \phi_{K_m}^{(m)}, \tau_m \right)\) is calculated internally by TMB.

5.8.3 Forecasting

\[\begin{equation} \beta_{u,V_m + h}^{(m)} \sim \text{N}\left(\phi_1^{(m)} \beta_{u,V_m + h - 1}^{(m)} + \cdots + \phi_{K_m}^{(m)} \beta_{u,V_m+h-K_m}^{(m)}, \tau_m^2\right) \end{equation}\]

5.8.4 Code

AR(n = 2, s = 1, along = NULL)
  • n is \(K_m\)
  • s is \(A_{\tau}^{(m)}\)
  • along is used to indentify the ‘along’ and ‘by’ dimensions

5.9 AR1()

Special case or AR, but with extra options for autocorrelation coefficient.

5.9.1 Model

\[\begin{align} \beta_{u,1}^{(m)} & \sim \text{N}(0, \tau_m^2), \quad u = 1, \cdots, U_m \\ \beta_{u,v}^{(m)} & \sim \text{N}(\phi_m \beta_{u,v-1}^{(m)}, (1 - \phi_m^2) \tau_m^2), \quad u = 1, \cdots, U_m, \quad v = 2, \cdots, V_m \\ \phi_m & = a_{0,m} + (a_{1,m} - a_{0,m}) \phi_m^{\prime} \\ \phi_m^{\prime} & \sim \text{Beta}(2, 2) \\ \tau_m & \sim \text{N}^+\left(0, A_{\tau}^{(m)2}\right). p\end{align}\] This is adapted from the specification used for AR1 densities in TMB. It implies that the marginal variance of all \(\beta_{u,v}^{(m)}\) is \(\tau_m^2\). We require that \(-1 < a_{0m} < a_{1m} < 1\).

5.9.2 Contribution to posterior density

\[\begin{equation} \text{N}(\tau_m \mid 0, A_{\tau}^{(m)2}) \text{Beta}( \phi_m^{\prime} \mid 2, 2) \prod_{u=1}^{U_m} \text{N}\left(\beta_{u,1}^{(m)} \mid 0, \tau_m^2 \right) \prod_{u=1}^{U_m} \prod_{j=2}^{V_m} \text{N}\left(\beta_{u,v}^{(m)} \mid \phi_m \beta_{u,v-1}^{(m)}, (1 - \phi_m^2) \tau_m^2 \right) \end{equation}\]

5.9.3 Forecasting

\[\begin{equation} \beta_{J_m + h}^{(m)} \sim \text{N}\left(\phi_m \beta_{J_m + h - 1}^{(m)}, (1 - \phi_m^2) \tau_m^2\right) \end{equation}\]

5.9.4 Code

AR1(min = 0.8, max = 0.98, s = 1, along = NULL)
  • min is \(a_{0m}\)
  • max is \(a_{1m}\)
  • s is \(A_{\tau}^{(m)}\). Defaults to 1.
  • along is used to identify ‘along’ and ‘by’ dimensions

The defaults for min and max are based on the defaults for function ets() in R package forecast (Hyndman and Khandakar 2008).

5.10 Lin()

5.10.1 Model

Existing version

\[\begin{align} \beta_{u,v}^{(m)} & \sim \text{N}(\alpha_u^{(m)} + v \eta_u^{(m)}, \tau_m^2), \quad u = 1,\cdots,U_m, \quad v = 1, \cdots, V_m \\ \alpha_u^{(m)} & \sim \text{N}(0, 1), \quad u = 1,\cdots,U_m \\ \eta_u^{(m)} & \sim \text{N}\left(0, (A_{\eta}^{(m)})^2\right), \quad u = 1, \cdots, U_m \\ \tau_m & \sim \text{N}^+\left(0, (A_{\tau}^{(m)})^2\right) \end{align}\]

Suggested new version

\[\begin{align} \beta_{u,v}^{(m)} & \sim \text{N}(\alpha_u^{(m)} + v \eta_u^{(m)}, \tau_m^2), \quad u = 1,\cdots,U_m, \quad v = 1, \cdots, V_m \\ \eta_u^{(m)} & \sim \text{N}\left(B_{\eta}^{(m)}, (A_{\eta}^{(m)})^2\right), \quad u = 1, \cdots, U_m \\ \alpha_u^{(m)} & = -\frac{V_m + 1}{2} \eta_u^{(m)}, \quad u = 1,\cdots,U_m \\ \tau_m & \sim \text{N}^+\left(0, (A_{\tau}^{(m)})^2\right) \end{align}\] where \(B_{\eta}^{(m)}\) and \(A_{\eta}^{(m)}\) default to 0 and 1, though alternatives can be supplied by the user, or via informative priors (for instance, \(B_{\eta}^{(m)} = -0.01\), or similar, for mortality)

Note that with the new version \[\begin{equation} E \sum_{v=1}^{V_m} \beta_{u,v}^{(m)} = \sum_{v=1}^{V_m}\left(-\frac{V_m + 1}{2} \eta_u^{(m)} + v \eta_u^{(m)}\right) = 0 \end{equation}\]

5.10.2 Contribution to posterior density

\[\begin{equation} \text{N}(\tau_m \mid 0, A_{\tau}^{(m)2}) \prod_{u=1}^{U_m} \text{N}(\alpha_u^{(m)} \mid 0, 1) \text{N}(\eta_u^{(m)} \mid 0, A_{\eta}^{(m)2}) \prod_{u=1}^{U_m} \prod_{v=1}^{V_m} \text{N}\left(\beta_{u,v}^{(m)} | \alpha_u^{(m)} + v \eta_u^{(m)}, \tau_m^2 \right) \end{equation}\]

5.10.3 Forecasting

\[\begin{equation} \beta_{u,V_m + h}^{(m)} \sim \text{N}(\alpha_u^{(m)} + (V_m + h) \eta_u^{(m)}, \tau_m^2) \end{equation}\]

5.10.4 Code

Lin(s = 1, sd = 1, along = NULL)
  • s is \(A_{\tau}^{(m)}\)
  • sd is \(A_{\eta}^{(m)}\)
  • along is used to indentify ‘along’ and ‘by’ dimensions

5.11 Lin_AR()

5.11.1 Model

\[\begin{align} \beta_{u,v}^{(m)} & = \alpha_u^{(m)} + \eta_u^{(m)} v + \epsilon_{u,v}^{(m)}, \quad u = 1, \cdots, U_m, \quad v = 1, \cdots, V_m \\ \alpha_u^{(m)} & \sim \text{N}\left(0, 1\right), \quad u = 1, \cdots, U_m \\ \eta_u^{(m)} & \sim \text{N}\left(0, A_{\eta}^{(m)2}\right), \quad u = 1, \cdots, U_m \\ \epsilon_{u,v}^{(m)} & \sim \text{N}\left(\phi_1^{(m)} \epsilon_{u,v-1}^{(m)} + \cdots + \phi_{K_m}^{(m)} \epsilon_{u,v-{K_m}}^{(m)}, \omega_m^2\right), \quad u = 1, \cdots, U_m, \quad v = K_m + 1, \cdots, V_m. \end{align}\]

Internally, TMB derives values for \(\epsilon_{u,v}^{(m)}, v = 1, \cdots, K_m\), and for \(\omega_m\), that provide the \(\epsilon_{u,v}^{(m)}\) with a stationary distribution in which each term has the same marginal variance. We denote this marginal variance \(\tau_m^2\), and assign it a prior \[\begin{equation} \tau_m \sim \text{N}^+(0, A_{\tau}^{(m)2}). \end{equation}\] Each of the individual \(\phi_k^{(m)}\) is restricted to the interval \((-1, 1)\), and the \(\phi_k^{(m)}\) are jointly restricted to values that yield stationary models. Let \[\begin{equation} r^{(m)} = \sqrt{\phi_1^{(m)2} + \cdots + \phi_{K_m}^{(m)2}}. \end{equation}\] We assign \(r^{(m)}\) the prior \[\begin{equation} r^{(m)} \sim \text{Beta}(2, 2). \end{equation}\]

5.11.2 Contribution to posterior density

\[\begin{equation} \text{N}^+\left(\tau_m \mid 0, A_{\tau}^{(m)2} \right) \text{Beta}\left( r_k^{(m)} \mid 2, 2 \right) \prod_{u=1}^{U_m} \text{N}(\alpha_u^{(m)} \mid 0, 1) \text{N}(\eta_u^{(m)} \mid 0, A_{\eta}^{(m)2}) p\left( \epsilon_{u,1}^{(m)}, \cdots, \epsilon_{u,V_m}^{(m)} \mid \phi_1^{(m)}, \cdots, \phi_{K_m}^{(m)}, \tau_m \right) \end{equation}\] where \(p\left( \epsilon_{u,1}^{(m)}, \cdots, \epsilon_{u,V_m}^{(m)} \mid \phi_1^{(m)}, \cdots, \phi_{K_m}^{(m)}, \tau_m \right)\) is calculated internally by TMB.

5.11.3 Forecasting

\[\begin{align} \beta_{u, V_m + h}^{(m)} & = \alpha_u^{(m)} + \eta_u^{(m)} (V_m + h) + \epsilon_{u,V_m+h}^{(m)} \\ \epsilon_{u,V_m+h}^{(m)} & \sim \text{N}\left(\phi_1^{(m)} \epsilon_{u,V_m + h - 1}^{(m)} + \cdots + \phi_{K_m}^{(m)} \epsilon_{u,V_m+h-K_m}^{(m)}, \omega_m^2\right) \end{align}\]

5.11.4 Code

Lin_AR(s = 1, sd = 1, along = NULL)
  • s is \(A_{\tau}^{(m)}\)
  • sd is \(A_{\eta}^{(m)}\)
  • along is used to indentify ‘along’ and ‘by’ variables

5.12 Lin_AR()

TODO - WRITE DETAILS

5.13 Sp()

5.13.1 Model

Penalised spline (P-spline)

\[\begin{equation} \pmb{\beta}_u^{(m)} = \pmb{B}^{(m)} \pmb{\alpha}_u^{(m)}, \quad u = 1, \cdots, U_m \end{equation}\] where \(\pmb{\beta}_u^{(m)}\) is the subvector of \(\pmb{\beta}^{(m)}\) composed of elements from the \(u\)th combination of the ‘by’ variables, \(\pmb{B}^{(m)}\) is a \(V_m \times K_m\) matrix of B-splines, and \(\pmb{\alpha}_u^{(m)}\) has a second-order random walk prior (Section 5.5).

\(\pmb{B}^{(m)} = (\pmb{b}_1^{(m)}(\pmb{v}), \cdots, \pmb{b}_{K_m}^{(m)}(\pmb{v}))\), with \(\pmb{v} = (1, \cdots, V_m)^{\top}\). The B-splines are centered, so that \(\pmb{1}^{\top} \pmb{b}_k^{(m)}(\pmb{v}) = 0\), \(k = 1, \cdots, K_m\).

5.13.2 Contribution to posterior density

\[\begin{equation} \text{N}(\tau_m \mid 0, A_{\tau}^{(m)2}) \prod_{u=1}^{U_m} \prod_{k=1}^2 \text{N}(\alpha_{u,k}^{(m)} \mid 0, 1) \prod_{u=1}^{U_m}\prod_{k=3}^{K_m} \text{N}\left(\alpha_{u,k}^{(m)} - 2 \alpha_{u,k-1}^{(m)} + \alpha_{u,k-2}^{(m)} \mid 0, \tau_m^2 \right) \end{equation}\]

5.13.3 Forecasting

Terms with a P-Spline prior cannot be forecasted.

5.13.4 Code

Sp(n = NULL, s = 1)
  • n is \(K_m\). Defaults to \(\max(0.7 J_m, 4)\).
  • s is the \(A_{\tau}^{(m)}\) from the second-order random walk prior. Defaults to 1.
  • along is used to identify ‘along’ and ‘by’ variables

5.14 SVD()

5.14.1 Model

Age but no sex or gender

Let \(\pmb{\beta}_u\) be the age effect for the \(u\)th combination of the ‘by’ variables. With an SVD prior, \[\begin{equation} \pmb{\beta}_u^{(m)} = \pmb{F}^{(m)} \pmb{\alpha}_u^{(m)} + \pmb{g}^{(m)}, \quad u = 1, \cdots, U_m \end{equation}\] where \(\pmb{F}^{(m)}\) is a \(V_m \times K_m\) matrix, and \(\pmb{g}^{(m)}\) is a vector with \(V_m\) elements, both derived from a singular value decomposition (SVD) of an external dataset of age-specific values for all sexes/genders combined. The construction of \(\pmb{F}^{(m)}\) and \(\pmb{g}^{(m)}\) is described in Appendix 13.2. The centering and scaling used in the construction allow use of the simple prior \[\begin{equation} \alpha_{u,k}^{(m)} \sim \text{N}(0, 1), \quad u = 1, \cdots, U_m, k = 1, \cdots, K_m. \end{equation}\]

Joint model of age and sex/gender

In the joint model, vector \(\pmb{\beta}_u\) represents the interaction between age and sex/gender for the \(u\)th combination of the ‘by’ variables. Matrix \(\pmb{F}^{(m)}\) and vector \(\pmb{g}^{(m)}\) are calculated from data that separate sexes/genders. The model is otherwise unchanged.

Independent models for each sex/gender

In the independent model, vector \(\pmb{\beta}_{s,u}\) represents age effects for sex/gender \(s\) and the \(u\)th combination of the ‘by’ variables, and we have \[\begin{equation} \pmb{\beta}_{s,u}^{(m)} = \pmb{F}_s^{(m)} \pmb{\alpha}_{s,u}^{(m)} + \pmb{g}_s^{(m)}, \quad s = 1, \cdots, S; \quad u = 1, \cdots, U_m \end{equation}\] Matrix \(\pmb{F}_s^{(m)}\) and vector \(\pmb{g}_s^{(m)}\) are calculated from data that separate sexes/genders. The prior is \[\begin{equation} \alpha_{s,u,k}^{(m)} \sim \text{N}(0, 1), \quad s = 1, \cdots, S; \quad u = 1, \cdots, U_m; \quad k = 1, \cdots, K_m. \end{equation}\]

5.14.2 Contribution to posterior density

\[\begin{equation} \prod_{u=1}^{U_m}\prod_{k=1}^{K_m} \text{N}\left(\alpha_{uk}^{(m)} \mid 0, 1 \right) \end{equation}\] for the age-only and joint models, and \[\begin{equation} \prod_{s=1}^S \prod_{u=1}^{U_m}\prod_{k=1}^{K_m} \text{N}\left(\alpha_{s,u,k}^{(m)} \mid 0, 1 \right) \end{equation}\] for the independent model

5.14.3 Forecasting

Terms with an SVD prior cannot be forecasted.

5.14.4 Code

SVD(ssvd, n_comp = NULL, indep = TRUE)

where - ssvd is an object containing \(\pmb{F}\) and \(\pmb{g}\) - n_comp is the number of components to be used (which defaults to ceiling(n/2), where n is the number of components in ssvd - indep determines whether and independent or joint model will be used if the term being modelled contains a sex or gender variable.

5.15 SVD_RW()

5.15.1 Model

The SVD_RW() prior is identical to the SVD() prior except that the coefficients evolve over time, following independent random walks. For instance, in the combined-sex/gender and joint models,

\[\begin{align} \pmb{\beta}_{u,t}^{(m)} & = \pmb{F}^{(m)} \pmb{\alpha}_{u,t}^{(m)} + \pmb{g}^{(m)}, \quad u = 1, \cdots, U_m; \quad t = 1, \cdots, T \\ \alpha_{u,k,1}^{(m)} & \sim \text{N}(0, 1), \quad u = 1, \cdots, U_m, k = 1, \cdots, K_m \\ \alpha_{u,k,t}^{(m)} & \sim \text{N}(\alpha_{u,k,t-1}^{(m)}, \tau_m^2), \quad u = 1, \cdots, U_m, k = 1, \cdots, K_m; t = 2, \cdots, T \\ \tau_m & \sim \text{N}^+\left(0, A_{\tau}^{(m)2}\right) \end{align}\]

5.15.2 Contribution to posterior density

In the combined-sex/gender and joint models,

\[\begin{equation} \text{N}(\tau_m \mid 0, A_{\tau}^{(m)2}) \prod_{u=1}^{U_m} \prod_{k=1}^{K_m} \text{N}(\alpha_{u,k,1}^{(m)} \mid 0, 1) \prod_{t=2}^{T} \text{N}\left(\alpha_{u,k,t}^{(m)} \mid \alpha_{u,k,t-1}^{(m)}, \tau_m^2 \right), \end{equation}\]

and in the independent model,

\[\begin{equation} \text{N}(\tau_m \mid 0, A_{\tau}^{(m)2}) \prod_{u=1}^{U_m} \prod_{s=1}^{S} \prod_{k=1}^{K_m} \text{N}(\alpha_{u,s,k,1}^{(m)} \mid 0, 1) \prod_{t=2}^{T} \text{N}\left(\alpha_{u,s,k,t}^{(m)} \mid \alpha_{u,s,k,t-1}^{(m)}, \tau_m^2 \right) \end{equation}\]

5.15.3 Simulation

TODO - write

5.15.4 Forecasting

\[\begin{align} \alpha_{u,k,T+h}^{(m)} & \sim \text{N}(\alpha_{u,k,T+h-1}^{(m)}, \tau_m^2), \quad u = 1, \cdots, U_m; \quad k = 1, \cdots, K_m \\ \pmb{\beta}_{u,T+h}^{(m)} & = \pmb{F}^{(m)} \pmb{\alpha}_{u,T+h}^{(m)} + \pmb{g}^{(m)}, \quad u = 1, \cdots, U_m \end{align}\]

5.15.5 Code

SVD_RW(ssvd, n_comp = NULL, s = 1, indep = TRUE)

where - ssvd is an object containing \(\pmb{F}\) and \(\pmb{g}\) - n_comp is \(K_m\) (which defaults to ceiling(n/2), where n is the number of components in ssvd - s is \(A_{\tau}^{(m)}\) - indep determines whether and independent or joint model will be used if the term being modelled contains a sex or gender variable.

5.16 SVD_RW2()

Same structure as SVD_RW(). TODO - write details.

5.17 SVD_AR()

Same structure as SVD_RW(). TODO - write details.

5.18 SVD_AR1()

Same structure as SVD_RW(). TODO - write details.

5.19 Known

5.19.1 Model

Elements of \(\pmb{\beta}^{(m)}\) are treated as known with certainty.

5.19.2 Contribution to posterior density

Known priors make no contribution to the posterior density.

5.19.3 Forecasting

Main effects with a known prior cannot be forecasted.

5.19.4 Code

Known(values)
  • values is a vector containing the \(\beta_j^{(m)}\).

6 Covariates

6.1 Model

The columns of matrix \(\pmb{Z}\) are assumed to be standardised to have mean 0 and standard deviation 1. \(\pmb{Z}\) does not contain a column for an intercept.

We implement two priors for coefficient vector \(\pmb{\zeta}\). The first prior is designed for the case where \(P\), the number of colums of \(\pmb{Z}\), is small, and most \(\zeta_p\) are likely to distinguishable from zero. The second prior is designed for the case where \(P\) is large, and only a few \(\zeta_p\) are likely to be distinguishable from zero.

6.1.1 Standard prior

\[\begin{align} \zeta_p \mid \varphi & \sim \text{N}(0, \varphi^2) \\ \varphi & \sim \text{N}^+(0, 1) \end{align}\]

6.1.2 Shrinkage prior

Regularized horseshoe prior (Piironen and Vehtari 2017)

\[\begin{align} \zeta_p \mid \vartheta_p, \varphi & \sim \text{N}(0, \vartheta_p^2 \varphi^2) \\ \vartheta_p & \sim \text{Cauchy}^+(0, 1) \\ \varphi & \sim \text{Cauchy}^+(0, A_{\varphi}^2) \\ A_{\varphi} & = \frac{p_0}{p_0 + P} \frac{\hat{\sigma}}{\sqrt{n}} \end{align}\] where \(p_0\) is an initial guess at the number of \(\zeta_p\) that are non-zero, and \(\hat{\sigma}\) is obtained as follows:

  • Poisson. Using maximum likelihood, fit the GLM \[\begin{align} y_i & \sim \text{Poisson}(w_i \gamma_i) \\ \log \gamma_i & = \sum_{m=0}^{M} \pmb{X}^{(m)} \pmb{\beta}^{(m)}, \end{align}\] and set \[\begin{equation} \hat{\sigma} = \frac{1}{n}\sum_{i=1}^n \frac{1}{w_i \hat{\gamma}_i}. \end{equation}\]
  • Binomial. Using maximum likelihood, fit the GLM \[\begin{align} y_i & \sim \text{binomial}(w_i, \gamma_i) \\ \text{logit} \gamma_i & = \sum_{m=0}^{M} \pmb{X}^{(m)} \pmb{\beta}^{(m)}, \end{align}\] and set \[\begin{equation} \hat{\sigma} = \frac{1}{n}\sum_{i=1}^n \frac{1}{w_i \hat{\gamma}_i (1 - \hat{\gamma}_i)}. \end{equation}\]
  • Normal. Using maximum likelihood, fit the linear model \[\begin{equation} y_i \sim \text{N}\left(\sum_{m=0}^{M} \pmb{X}^{(m)} \pmb{\beta}^{(m)}, w_i^{-1}\xi^2 \right) \end{equation}\] and set \(\hat{\sigma} = \hat{\xi}\).

The quantities used for Poisson and binomial likelihoods are derived from normal approximations to GLMs (Piironen and Vehtari 2017; Gelman et al. 2014, sec. 16.2).

6.2 Contribution to posterior density

TODO - write

6.3 Forecasting

TODO - write

6.4 Code

set_covariates(formula, data = NULL, n_coef = NULL)
  • formula is a one-sided R formula describing the covariates to be used
  • data A data frame. If a value for data is supplied, then formula is interpreted in the context of this data frame. If a value for data is not supplied, then formula is interpreted in the context of the data frame used for the original call to mod_pois(), mod_binom(), or mod_norm().
  • n_coef is the effective number of non-zero coefficients. If a value is supplied, the shrinkage prior is used; otherwise the standard prior is used.

Examples:

set_covariates(~ mean_income + distance * employment)
set_covariates(~ ., data = cov_data, n_coef = 5)

7 Prior for dispersion terms

7.1 Model

Use exponential distribution, parameterised using mean, \[\begin{equation} \xi \sim \text{Exp}(\mu_{\xi}) \end{equation}\]

7.2 Contribution to prior density

\[\begin{equation} p(\xi) = \frac{1}{\mu_{\xi}} \exp\left(\frac{-\xi}{\mu_{\xi}}\right) \end{equation}\]

7.3 Code

set_disp(mean = 1)
  • mean is \(\mu_{\xi}\)

8 Data models

8.1 Data models for outcome

8.1.1 Random Rounding to Base 3

Random rounding to base 3 (RR3) is a confidentialization method used by some statistical agencies. It is applied to counts data. Each count \(x\) is rounded randomly as follows:

  • If \(x \mod 3 = 0\), then \(x\) is left unchanged;
  • if \(x \mod 3 = 1\) then \(x\) is changed to \(x-1\) with probability 2/3, and is changed to \(x + 2\) with probability 1/3; and
  • if \(x \mod 3 = 2\) then \(x\) is changed to \(x-2\) with probability 1/3, and is changed to \(x + 1\) with probability 2/3.

RR3 data models can be used with Poisson or binomial likelihoods. Let \(y_i\) denote the observed value for the outcome, and \(y_i^*\) the true value. The likelihood with a RR3 data model is then

\[\begin{align} p(y_i | \gamma_i, w_i) & = \sum_{y_i^*} p(y_i | y_i^*) p(y_i^* | \gamma_i, w_i) \\ & = \sum_{k = -2, -1, 0, 1, 2} p(y_i | y_i + k) p(y_i + k | \gamma_i, w_i) \\ & = \tfrac{1}{3} p(y_i - 2 | \gamma_i, w_i) + \tfrac{2}{3} p(y_i - 1 | \gamma_i, w_i) + p(y_i | \gamma_i, w_i) + \tfrac{2}{3} p(y_i + 1 | \gamma_i, w_i) + \tfrac{1}{3} p(y_i + 2 | \gamma_i, w_i) \end{align}\]

8.2 Data models for exposure or size

9 Estimation

9.1 Filtering and Aggregation

The data that we supply to TMB is a a filtered and aggregated version of the data that the user provides through the data argument.

In the filtering stage, we remove any rows where (i) the offset is 0 or NA, or (ii) the outcome variable is NA.

In the aggregation stage, we identify any rows in the data that duplicated combinations of classification variables. For instance, if the classification variables are age and sex, and we have two rows where age is "20-24" and sex is "Female", then these rows would count as duplicated combinations. We aggregate offset and outcome variables across these duplicates. With Poisson and binomial models, the aggregation formula for outcomes is \[\begin{equation} y^{\text{new}} = \sum_{i=1}^D y_i^{\text{old}}, \end{equation}\] and the aggregation formula for exposure/size is \[\begin{equation} w^{\text{new}} = \sum_{i=1}^D w_i^{\text{old}}, \end{equation}\] where \(D\) is the number of times a particular combination is duplicated. With normal models, the aggregation formula for outcomes is \[\begin{equation} y^{\text{new}} = \frac{\sum_{i=1}^D y_i^{\text{old}}}{D}, \end{equation}\] and the aggregation formuala for weights is \[\begin{equation} w^{\text{new}} = \frac{1}{\sum_{i=1}^D \frac{1}{w_i^{\text{old}}}}. \end{equation}\]

9.2 Inner-Outer Approximation

9.2.1 Step 0: Select ‘inner’ and ‘outer’ variables

Select variables to be used in inner model. By default, these are the age, sex, and time variables in the model. All remaining variables are ‘outer’ variables.

9.2.2 Step 1: Fit inner model

Aggregate the data using the classification formed by the inner variables. (See Section 9.1 on aggregation procedures.) Remove all terms not involving ‘inner’ variables, other than the intercept term, from the model. Set dispersion to 0. Fit the resulting model.

9.2.3 Step 2: Fit outer model

Let \(\hat{\mu}_i^{\text{in}}\) be point estimates for the linear predictor \(\mu_i\) obtained from the inner model.

Poisson model

Aggregate the data using the classification formed by the outer variables. Remove all terms involving the ‘inner’ variables, plus the intercept, from the model. Set dispersion to 0. Set exposure to \(w_i^{\text{out}} = \hat{\mu}^{\text{in}} w_i\). Fit the model.

Binomial model

Fit the original model, but set dispersion to 0, and for all terms from the ‘inner’ model, use Known priors using point estimates from the inner model.

Normal model

Aggregate the data using the classification formed by the outer variables. Remove all terms involving the ‘inner’ variables, plus the intercept, from the model. Set the outcome variable to to $y_i^{} = y_i - ^{}. Fit the model.

9.2.4 Step 4: Concatenate estimates

Concatenate posterior distributions for the inner terms from the inner model to posterior distributions for the outer terms from the outer model.

9.2.5 Step 5: Calculate dispersion

If the original model includes a dispersion term, then estimate dispersion. Let \(\hat{\mu}_i^{\text{comb}}\) be point estimates for the linear predictor obtained from the concatenated estimates.

Poisson model

Use the original disaggregated data, or, if the original data contains more then 10,000 rows, select 10,000 rows at random from the original data. Remove all terms from the original model except for the intercept. Set exposure to \(w_i^{\text{out}} = \hat{\mu}^{\text{comb}} w_i\).

Binomial model

Fit the the original model, but with all terms except the intercept having Known priors, where the values are obtained from point estimates from the concatenated estimates.

Normal model

Use the original disaggregated data, or, if the original data contains more then 10,000 rows, select 10,000 rows at random from the original data. Remove all terms from the original model except for the intercept. Set the outcome to \(y_i^{\text{out}} = y_i - \hat{\mu}^{\text{comb}}\).

10 Deriving outputs

Running TMB yields a set of means \(\pmb{m}\), and a precision matrix \(\pmb{Q}^{-1}\), which together define the approximate joint posterior distribution of

  • \(\pmb{\beta}^{(m)}\) for terms with independent normal, fixed normal, multivariate normal, random walk, second-order random walk, AR1, Linear, and Linear-AR1 priors,
  • \(\pmb{\alpha}\) for terms with Spline and SVD priors,
  • hyper-parameters for \(\pmb{\beta}^{(m)}\) and \(\pmb{\alpha}^{(m)}\) typically transformed to another scale, such as a log scale,
  • dispersion term \(\xi\), and
  • seasonal effects \(\pmb{\lambda}\), together with associated hyper-parameters \(\tau_{\lambda}\) (on a log scale).

We use \(\tilde{\pmb{\theta}}\) to denote a vector containing all these quantities.

We perform a Cholesky decomposition of \(\pmb{Q}^{-1}\), to obtain \(\pmb{R}\) such that \[\begin{equation} \pmb{R}^{\top} \pmb{R} = \pmb{Q}^{-1} \end{equation}\] We store \(\pmb{R}\) as part of the model object.

We draw generate values for \(\tilde{\pmb{\theta}}\) by generating a vector of standard normal variates \(\pmb{z}\), back-solving the equation \[\begin{equation} \pmb{R} \pmb{v} = \pmb{z} \end{equation}\] and setting \[\begin{equation} \tilde{\pmb{\theta}} = \pmb{v} + \pmb{m}. \end{equation}\]

Next we convert any transformed hyper-parameters back to the original units, and insert values for \(\pmb{\beta}^{(m)}\) for terms that have Known priors. We denote the resulting vector \(\pmb{\theta}\).

Finally we draw from the distribution of \(\pmb{\gamma} \mid \pmb{y}, \pmb{\theta}\) using the methods described in Sections 3.1-3.3.

11 Simulation

To generate one set of simulated values, we start with values for exposure, trials, or weights, \(\pmb{w}\), and possibly covariates \(\pmb{Z}\), then go through the following steps:

  1. Draw values for any parameters in the priors for the \(\pmb{\beta}^{(m)}\), \(m = 1, \cdots, M\).
  2. Conditional on the values drawn in Step 1, draw values the \(\pmb{\beta}^{(m)}\), \(m = 0, \cdots, M\).
  3. If the model contains seasonal effects, draw the standard deviation \(\kappa_m\), and then the effects \(\pmb{\lambda}^{(m)}\).
  4. If the model contains covariates, draw \(\varphi\) and \(\vartheta_p\) where necessary, draw coefficient vector \(\pmb{\zeta}\).
  5. Use values from steps 2–4 to form the linear predictor \(\sum_{m=0}^{M} \pmb{X}^{(m)} (\pmb{\beta}^{(m)} + \pmb{\lambda}^{(m)}) + \pmb{Z} \pmb{\zeta}\).
  6. Back-transform the linear predictor, to obtain vector of cell-specific parameters \(\pmb{\mu}\).
  7. If the model contains a dispersion parameter \(\xi\), draw values from the prior for \(\xi\).
  8. In Poisson and binomial models, use \(\pmb{\mu}\) and, if present, \(\xi\) to draw \(\pmb{\gamma}\).
  9. In Poisson and binomial models, use \(\pmb{\gamma}\) and \(\pmb{w}\) to draw \(\pmb{y}\); in normal models, use \(\pmb{\mu}\), \(\xi\), and \(\pmb{w}\) to draw \(\pmb{y}\).

12 Replicate data

12.1 Model

12.1.1 Poisson likelihood

12.1.1.1 Condition on \(\pmb{\gamma}\)

\[\begin{equation} y_i^{\text{rep}} \sim \text{Poisson}(\gamma_i w_i) \end{equation}\]

12.1.1.2 Condition on \((\pmb{\mu}, \xi)\)

\[\begin{align} y_i^{\text{rep}} & \sim \text{Poisson}(\gamma_i^{\text{rep}} w_i) \\ \gamma_i^{\text{rep}} & \sim \text{Gamma}(\xi^{-1}, (\xi \mu_i)^{-1}) \end{align}\] which is equivalent to \[\begin{equation} y_i^{\text{rep}} \sim \text{NegBinom}\left(\xi^{-1}, (1 + \mu_i w_i \xi)^{-1}\right) \end{equation}\]

12.1.2 Binomial likelihood

12.1.2.1 Condition on \(\pmb{\gamma}\)

\[\begin{equation} y_i^{\text{rep}} \sim \text{Binomial}(w_i, \gamma_i) \end{equation}\]

12.1.2.2 Condition on \((\pmb{\mu}, \xi)\)

\[\begin{align} y_i^{\text{rep}} & \sim \text{Binomial}(w_im \gamma_i^{\text{rep}}) \\ \gamma_i^{\text{rep}} & \sim \text{Beta}\left(\xi^{-1} \mu_i, \xi^{-1}(1 - \mu_i)\right) \end{align}\]

12.1.3 Normal likelihood

\[\begin{equation} y_i^{\text{rep}} \sim \text{N}(\gamma_i, \xi^2 / w_i) \end{equation}\]

12.1.4 Data models for outcomes

If the overall model includes a data model for the outcome, then a further set of draws is made, deriving values for the observed outcomes, given values for the true outcomes.

12.2 Code

replicate_data(x, condition_on = c("fitted", "expected"), n = 20)

13 Appendices

13.1 Definitions

Quantity Definition
\(i\) Index for cell, \(i = 1, \cdots, n\).
\(y_i\) Value for outcome variable.
\(w_i\) Exposure, number of trials, or weight.
\(\gamma_i\) Super-population rate, probability, or mean.
\(\mu_i\) Cell-specific mean.
\(\xi\) Dispersion parameter.
\(g()\) Log, logit, or identity function.
\(m\) Index for intercept, main effect, or interaction. \(m = 0, \cdots, M\).
\(j\) Index for element of a main effect or interaction.
\(u\) Index for combination of ‘by’ variables for an interaction. \(u = 1, \cdots U_m\). \(U_m V_m = J_m\)
\(v\) Index for the ‘along’ dimension of an interaction. \(v = 1, \cdots V_m\). \(U_m V_m = J_m\)
\(\beta^{(0)}\) Intercept.
\(\pmb{\beta}^{(m)}\) Main effect or interaction. \(m = 1, \cdots, M\).
\(\beta_j^{(m)}\) \(j\)th element of \(\pmb{\beta}^{(m)}\). \(j = 1, \cdots, J_m\).
\(\pmb{X}^{(m)}\) Matrix mapping \(\pmb{\beta}^{(m)}\) to \(\pmb{y}\).
\(\pmb{Z}\) Matrix of covariates.
\(\pmb{\zeta}\) Parameter vector for covariates \(\pmb{Z}^{(m)}\).
\(A_0\) Scale parameter in prior for intercept \(\beta^{(0)}\).
\(\tau_m\) Standard deviation parameter for main effect or interaction.
\(A_{\tau}^{(m)}\) Scale parameter in prior for \(\tau_m\).
\(\pmb{\alpha}^{(m)}\) Parameter vector for P-spline and SVD priors.
\(\alpha_k^{(m)}\) \(k\)th element of \(\pmb{\alpha}^{(m)}\). \(k = 1, \cdots, K_m\).
\(\pmb{V}^{(m)}\) Covariance matrix for multivariate normal prior.
\(h_j^{(m)}\) Linear covariate
\(\eta^{(m)}\) Parameter specific to main effect or interaction \(\pmb{\beta}^{(m)}\).
\(\eta_u^{(m)}\) Parameter specific to \(u\)th combination of ‘by’ variables in interaction \(\pmb{\beta}^{(m)}\).
\(A_{\eta}^{(m)}\) Standard deviation in normal prior for \(\eta_m\).
\(\omega_m\) Standard deviation of parameter \(\eta_c\) in multivariate priors.
\(\phi_m\) Correlation coefficient in AR1 densities.
\(a_{0m}\), \(a_{1m}\) Minimum and maximum values for \(\phi_m\).
\(\pmb{B}^{(m)}\) B-spline matrix in P-spline prior.
\(\pmb{b}_k^{(m)}\) B-spline. \(k = 1, \cdots, K_m\).
\(\pmb{F}^{(m)}\) Matrix in SVD prior.
\(\pmb{g}^{(m)}\) Offset in SVD prior.
\(\pmb{\beta}_{\text{trend}}\) Trend effect.
\(\pmb{\beta}_{\text{cyc}}\) Cyclical effect.
\(\pmb{\beta}_{\text{seas}}\) Seasonal effect.
\(\varphi\) Global shrinkage parameter in shrinkage prior.
\(A_{\varphi}\) Scale term in prior for \(\varphi\).
\(\vartheta_p\) Local shrinkage parameter in shrinkage prior.
\(p_0\) Expected number of non-zero coefficients in \(\pmb{\zeta}\).
\(\hat{\sigma}\) Empirical scale estimate in prior for \(\varphi\).
\(\pi\) Vector of hyper-parameters

13.2 SVD prior for age

Let \(\pmb{A}\) be a matrix of age-specific estimates from an international database, transformed to take values in the range \((-\infty, \infty)\). Each column of \(\pmb{A}\) represents one set of age-specific estimates, such as log mortality rates in Japan in 2010, or logit labour participation rates in Germany in 1980.

Let \(\pmb{U}\), \(\pmb{D}\), \(\pmb{V}\) be the matrices from a singular value decomposition of \(\pmb{A}\), where we have retained the first \(K\) components. Then \[\begin{equation} \pmb{A} \approx \pmb{U} \pmb{D} \pmb{V}. \tag{13.1} \end{equation}\]

Let \(m_k\) and \(s_k\) be the mean and sample standard deviation of the elements of the \(k\)th row of \(\pmb{V}\), with \(\pmb{m} = (m_1, \cdots, m_k)^{\top}\) and \(\pmb{s} = (s_1, \cdots, s_k)^{\top}\). Then \[\begin{equation} \tilde{\pmb{V}} = (\text{diag}(\pmb{s}))^{-1} (\pmb{V} - \pmb{m} \pmb{1}^{\top}) \end{equation}\] is a standardized version of \(\pmb{V}\).

We can rewrite (13.1) as \[\begin{align} \pmb{A} & \approx \pmb{U} \pmb{D} (\text{diag}(\pmb{s}) \tilde{\pmb{V}} + \pmb{m} \pmb{1}^{\top}) \\ & = \pmb{F} \tilde{\pmb{V}} + \pmb{g} \pmb{1}^{\top}, \tag{13.2} \end{align}\] where \(\pmb{F} = \pmb{U} \pmb{D} \text{diag}(\pmb{s})\) and \(\pmb{g} = \pmb{U} \pmb{D} \pmb{m}\).

Let \(\tilde{\pmb{v}}_l\) be a randomly-selected column from \(\tilde{\pmb{V}}\). From the construction of \(\tilde{\pmb{V}}\) we have \(\text{E}[\tilde{v}_{kl}] = 0\) and \(\text{var}[\tilde{v}_{kl}] = 1\). If \(\pmb{z}\) is a vector of standard normal variables, then \[\begin{equation} \pmb{F} \pmb{z} + \pmb{g} \end{equation}\] should look approximately like a randomly-selected column from the original data matrix \(\pmb{A}\).

References

Gelman, A., J. B. Carlin, H. S. Stern, D. B. and Dunson, A. Vehtari, and D. B. Rubin. 2014. Bayesian Data Analysis. Third Edition. New York: Chapman; Hall.
Hyndman, Rob J, and Yeasmin Khandakar. 2008. “Automatic Time Series Forecasting: The Forecast Package for R.” Journal of Statistical Software 26 (3): 1–22. https://doi.org/10.18637/jss.v027.i03.
Norton, Richard A, J Andrés Christen, and Colin Fox. 2018. “Sampling Hyperparameters in Hierarchical Models: Improving on Gibbs for High-Dimensional Latent Fields and Large Datasets.” Communications in Statistics-Simulation and Computation 47 (9): 2639–55.
Piironen, Juho, and Aki Vehtari. 2017. On the Hyperprior Choice for the Global Shrinkage Parameter in the Horseshoe Prior.” In Proceedings of the 20th International Conference on Artificial Intelligence and Statistics, edited by Aarti Singh and Jerry Zhu, 54:905–13. Proceedings of Machine Learning Research. PMLR. https://proceedings.mlr.press/v54/piironen17a.html.
Simpson, Dan. 2022. “Priors Part 4: Specifying Priors That Appropriately Penalise Complexity.” https://dansblog.netlify.app/posts/2022-08-29-priors4/priors4.html.
Wood, Simon N. 2017. Generalized Additive Models: An Introduction with R. Chapman; Hall/CRC.