library(makemyprior)
We carry out a similar study of neonatal mortality in Kenya as one by Fuglstad et al. (2020). We model the neonatal mortality, defined as the number of deaths if infants the first month of live per birth. We use the linear predictor: \[ \eta_{i,j} = \mathrm{logit}(p_{i,j}) = \mu + x_{i,j} \beta + u_i + v_i + \nu_{i,j}, \ i = 1, \dots, n, \ j = 1, \dots, m_i, \] and use \(y_{i,j} | b_{i,j}, p_{i,j} \sim \mathrm{Binomial}(b_{i,j}, p_{i,j})\), for cluster \(j\) in county \(i\). We have between $m_i {6, 7, 8} clusters in each of the \(n = 47\) counties (see e.g. Fuglstad et al. (2020) for a map of the counties).
We need a neighborhood graph for the counties, which is found in makemyprior
. We scale the Besag effect to have a generalized variance equal to \(1\).
# neighborhood graph
<- paste0(path.package("makemyprior"), "/neonatal.graph")
graph_path
<- y ~ urban + mc(nu) + mc(v) +
formula mc(u, model = "besag", graph = graph_path, scale.model = TRUE)
We use the dataset neonatal_mortality
in makemyprior
, and present three priors. We do not carry out inference, as it takes time and will slow down the compilation of the vignettes by a lot, but include code so the user can run the inference themselves.
We prefer coarser over finer unstructured effects, and unstructured over structured effects. That means that we prefer \(\mathbf{v}\) over \(\mathbf{u}\) and \(\mathbf{v} + \mathbf{u}\) over \(\mathbf{\nu}\) in the prior. We achieve this with a prior that distributes the county variance with shrinkage towards the unstructured county effect, and the total variance towards the county effects. Following (fuglstad?), we induce shrinkage on the total variance such that we have a 90% credible interval of \((0.1, 10)\) for the effect of \(\exp(v_i + u_i + \nu_{i,j})\). We use the function find_pc_prior_param
in makemyprior
to find the parameters for the PC prior:
set.seed(1)
find_pc_prior_param(lower = 0.1, upper = 10, prob = 0.9, N = 2e5)
#> U = 3.353132
#> Prob(0.09866969 < exp(eta) < 9.892902) = 0.9
<- make_prior(
prior1 family = "binomial",
formula, neonatal_data, prior = list(tree = "s1 = (u, v); s2 = (s1, nu)",
w = list(s1 = list(prior = "pc0", param = 0.25),
s2 = list(prior = "pc1", param = 0.75)),
V = list(s2 = list(prior = "pc",
param = c(3.35, 0.05)))))
prior1#> Model: y ~ urban + mc(nu) + mc(v) + mc(u, model = "besag", graph = graph_path,
#> scale.model = TRUE)
#> Tree structure: v_u = (v,u); nu_v_u = (nu,v_u)
#>
#> Weight priors:
#> w[v/v_u] ~ PC1(0.75)
#> w[nu/nu_v_u] ~ PC0(0.25)
#> Total variance priors:
#> sqrt(V)[nu_v_u] ~ PC0(3.35, 0.05)
plot_prior(prior1) # or plot(prior1)
plot_tree_structure(prior1)
Inference can be carried out by running:
<- inference_stan(prior1, iter = 15000, warmup = 5000,
posterior1 seed = 1, init = "0", chains = 1)
plot_posterior_stan(posterior1, param = "prior", plot_prior = TRUE)
For inference with INLA:
<- inference_inla(prior1, Ntrials = neonatal_data$Ntrials)
posterior1_inla plot_posterior_stdev(posterior1_inla)
Note the Ntrials
argument fed to inference_inla
.
We use a prior without any knowledge, and use the default prior:
<- make_prior(formula, neonatal_data, family = "binomial")
prior2 #> Warning: Did not find a tree, using default tree structure instead.
prior2#> Model: y ~ urban + mc(nu) + mc(v) + mc(u, model = "besag", graph = graph_path,
#> scale.model = TRUE)
#> Tree structure: nu_v_u = (nu,v,u)
#>
#> Weight priors:
#> (w[nu/nu_v_u], w[v/nu_v_u]) ~ Dirichlet(3)
#> Total variance priors:
#> sqrt(V)[nu_v_u] ~ PC0(1.6, 0.05)
plot_prior(prior2)
plot_tree_structure(prior2)
Inference can be carried out by running:
<- inference_stan(prior2, iter = 15000, warmup = 5000,
posterior2 seed = 1, init = "0", chains = 1)
plot_posterior_stan(posterior2, param = "prior", plot_prior = TRUE)
sessionInfo()
#> R version 4.1.0 (2021-05-18)
#> Platform: aarch64-apple-darwin20 (64-bit)
#> Running under: macOS Big Sur 11.3.1
#>
#> Matrix products: default
#> BLAS: /Library/Frameworks/R.framework/Versions/4.1-arm64/Resources/lib/libRblas.dylib
#> LAPACK: /Library/Frameworks/R.framework/Versions/4.1-arm64/Resources/lib/libRlapack.dylib
#>
#> locale:
#> [1] C/en_US.UTF-8/en_US.UTF-8/C/en_US.UTF-8/en_US.UTF-8
#>
#> attached base packages:
#> [1] stats graphics grDevices utils datasets methods base
#>
#> other attached packages:
#> [1] makemyprior_1.1.0
#>
#> loaded via a namespace (and not attached):
#> [1] tidyselect_1.1.1 xfun_0.30 bslib_0.3.1 shinyjs_2.1.0
#> [5] purrr_0.3.4 splines_4.1.0 lattice_0.20-44 colorspace_2.0-3
#> [9] vctrs_0.3.8 generics_0.1.1 htmltools_0.5.2 yaml_2.3.5
#> [13] utf8_1.2.2 rlang_1.0.2 jquerylib_0.1.4 pillar_1.7.0
#> [17] later_1.3.0 glue_1.6.2 lifecycle_1.0.1 stringr_1.4.0
#> [21] munsell_0.5.0 gtable_0.3.0 htmlwidgets_1.5.4 visNetwork_2.1.0
#> [25] evaluate_0.15 labeling_0.4.2 knitr_1.37 fastmap_1.1.0
#> [29] httpuv_1.6.5 fansi_1.0.2 highr_0.9 Rcpp_1.0.8.2
#> [33] xtable_1.8-4 scales_1.1.1 promises_1.2.0.1 jsonlite_1.8.0
#> [37] farver_2.1.0 mime_0.12 ggplot2_3.3.5 digest_0.6.29
#> [41] stringi_1.7.6 dplyr_1.0.7 shiny_1.7.1 grid_4.1.0
#> [45] cli_3.2.0 tools_4.1.0 magrittr_2.0.2 sass_0.4.0
#> [49] tibble_3.1.6 crayon_1.5.0 pkgconfig_2.0.3 ellipsis_0.3.2
#> [53] MASS_7.3-54 Matrix_1.3-3 rmarkdown_2.13 rstudioapi_0.13
#> [57] R6_2.5.1 compiler_4.1.0