--- title: "MCMC Settings" date: "2020-06-22" output: rmarkdown::html_vignette: toc: true depth: 4 self_contained: false vignette: > %\VignetteIndexEntry{MCMC Settings} %\VignetteEncoding{UTF-8} %\VignetteEngine{knitr::rmarkdown} --- ```{r setup, include = FALSE} knitr::opts_chunk$set( collapse = TRUE, comment = "#>", fig.width = 7, fig.align = 'center' # fig.path = "figures_MCMCsettings/" ) library(JointAI) options(width = 100) ``` In **JointAI**, models are estimated in the Bayesian framework, using MCMC ([Markov Chain Monte Carlo](https://en.wikipedia.org/wiki/Markov_chain_Monte_Carlo)) sampling. The sampling is done by the software [JAGS](https://mcmc-jags.sourceforge.io/) ("Just Another Gibbs Sampler"), which performs [Gibbs](https://en.wikipedia.org/wiki/Gibbs_sampling) sampling. **JointAI** pre-processes the data to get it into a form that can be passed to JAGS and writes the JAGS model. The R package [**rjags**](https://CRAN.R-project.org/package=rjags) is used as an interface to JAGS. This vignette describes how to specify the arguments in the main functions that control MCMC related settings. To learn more about how to specify the other arguments in **JointAI** models or the theoretical background of the statistical approach, check out the vignettes [*Model Specification*](https://nerler.github.io/JointAI/articles/ModelSpecification.html) and [*TheoreticalBackground*](https://nerler.github.io/JointAI/articles/TheoreticalBackground.html). In this vignette, we use the [NHANES](https://nerler.github.io/JointAI/reference/NHANES.html) data for examples in cross-sectional data and the dataset [simLong](https://nerler.github.io/JointAI/reference/simLong.html) for examples in longitudinal data. For more info on these datasets, check out the vignette [*Visualizing Incomplete Data*](https://nerler.github.io/JointAI/articles/VisualizingIncompleteData.html), in which the distributions of variables and missing values in both sets is explored. **Note:**
In several examples we use `progress.bar = 'none'` which prevents printing of the progress of the MCMC sampling, since this would result in lengthy output in the vignette. ## MCMC related parameters in **JointAI** The main functions [`*_imp()`](https://nerler.github.io/JointAI/reference/model_imp.html) have a number of arguments that specify settings for the MCMC sampling: * `n.chains`: number of MCMC chains * `n.adapt`: number of iterations in the adaptive phase * `n.iter`: number of iterations in the sampling phase * `thin`: thinning degree * `monitor_params`: parameters/nodes to be monitored * `seed`: optional seed value for reproducibility * `inits`: initial values And some other parameters passed to functions from **rjags**: * `quiet`: should printing of information be suppressed? * `progress.bar`: type of progress bar ## Chains and Iterations In MCMC sampling, values are drawn from a probability distribution. The distribution of the current value is drawn from depends on the previously drawn value (but not on values before that). Values, thus, form a chain. Once the chain has converged, its elements can be seen as a sample from the target posterior distribution. ### Number of chains To evaluate the convergence of MCMC chains it is helpful to create multiple chains that have different starting values. The argument `n.chains` selects the number of chains (by default, `n.chains = 3`). For calculating the model summary, multiple chains are merged. ### Adaptive phase JAGS has an adaptive mode, in which samplers are optimized (for example the step size is adjusted). Samples obtained during the adaptive mode do not form a Markov chain and are discarded. The argument `n.adapt` controls the length of this adaptive phase. The default value for `n.adapt` is 100, which works well in many of the examples considered here. Complex models may require longer adaptive phases. If the adaptive phase is not sufficient for JAGS to optimize the samplers, a warning message will be printed (see example below). ### Sampling iterations `n.iter` specifies the number of iterations in the sampling phase, i.e., the length of the MCMC chain. How many samples are required to reach convergence and to have sufficient precision depends on the complexity of data and model, and may range from as few as 100 to several million. #### Side note: How to evaluate convergence? Convergence can, for instance, be evaluated visually using a [`traceplot()`](https://nerler.github.io/JointAI/reference/traceplot.html) or using the Gelman-Rubin diagnostic criterion^[ Gelman, A., Meng, X. L., & Stern, H. (1996). Posterior predictive assessment of model fitness via realized discrepancies. Statistica Sinica, 733-760.] (implemented in [`GR_crit()`](https://nerler.github.io/JointAI/reference/GR_crit.html), but also returned with the model summary). The latter compares within and between chain variability and requires the JointAI object to have at least two chains. #### Side note: How to check precision? The precision of the MCMC sample can be checked with the function [`MC_error()`](https://nerler.github.io/JointAI/reference/MC_error.html). It calculates the Monte Carlo error (the error that is made since the sample is finite) and compares it to the standard deviation of the posterior sample. A rule of thumb is that the Monte Carlo error should not be more than 5% of the standard deviation.^[See p. 195 of Lesaffre, E., & Lawson, A. B. (2012). Bayesian Biostatistics. John Wiley & Sons.] ### Thinning In settings with high autocorrelation, i.e., there are no large jumps in the chain but sampled values are always close to the previous value, it may take many iterations before a sample is created that sufficiently represents the whole range of the posterior distribution. Processing of such long chains can be slow and take a lot of memory. The parameter `thin` allows the user to specify if and how much the MCMC chains should be thinned out before storing them. By default `thin = 1` is used, which corresponds to keeping all values. A value `thin = 10` would result in keeping every 10th value and discarding all other values. ### Examples #### Default settings `n.adapt = 100` and `thin = 1` with 100 sampling iterations ```{r, message = FALSE} mod1 <- lm_imp(SBP ~ alc, data = NHANES, n.iter = 100, progress.bar = 'none') ``` The relevant part of the model summary (obtained with [`summary()`](https://nerler.github.io/JointAI/reference/summary.JointAI.html)) shows that the first 100 iterations (adaptive phase) were discarded, and the 100 iterations that follow form the posterior sample. Thinning was set to 1 and there are 3 chains. ```{r, echo = FALSE} a1 <- capture.output(print(summary(mod1))) cat(paste0('[...]', '\n', paste(a1[18:22], collapse = "\n"))) ``` #### Insufficient adaptation phase ```{r, message = FALSE} mod2 <- lm_imp(SBP ~ alc, data = NHANES, n.adapt = 10, n.iter = 100, progress.bar = 'none') ``` Specifying `n.adapt = 10` results in a warning message. The relevant part of the model summary from the resulting model is: ```{r, echo = FALSE} a2 <- capture.output(print(summary(mod2))) cat(paste0('[...]', '\n', paste(a2[19:23], collapse = "\n"))) ``` #### Thinning ```{r, message = FALSE} mod3 <- lm_imp(SBP ~ alc, data = NHANES, n.iter = 500, thin = 10, progress.bar = 'none') ``` Here, iterations 110 until 600 are used in the output, but due to thinning interval of ten, the resulting MCMC chains contain only 50 samples instead of 500, that is, the samples from iteration 110, 120, 130, ... ```{r, echo = FALSE} a3 <- capture.output(print(summary(mod3))) cat(paste0('[...]', '\n', paste(a3[19:23], collapse = "\n"))) ``` ## Parameters to follow JAGS only saves the values of MCMC chains for those nodes/parameters for which the user has specified that they should be monitored. This is also the case in **JointAI**. #### What are nodes? Nodes are variables in the Bayesian framework, i.e., everything observed or unobserved. This includes the data and parameters that are estimated, but also missing values in the data or parts of the data that are generally unobserved, such as random effects or latent class indicators. ### Specifying which nodes should be monitored For this purpose, the main analysis functions `*_imp` have an argument `monitor_params`. For details, explanation and examples see the vignette [*Parameter Selection*](https://nerler.github.io/JointAI/articles/SelectingParameters.html). ## Initial values Initial values are the starting point for the MCMC sampler. Setting good initial values, i.e., initial values that are likely under the posterior distribution, can speed up convergence. By default, the argument `inits = NULL`, which means that initial values for the nodes are generated by JAGS. **JointAI** only sets the initial values for the random number generators to allow reproducibility of the results. The argument `seed` allows the specification of a seed value with which the starting values of the random number generator can be reproduced. ### User-specified initial values It is possible to supply initial values directly as * a list or * a function. Initial values can be specified for every unobserved node, that is, parameters and missing values, but it is possible to only specify initial values for a subset of nodes. Unless the user-specified initial values contain initial values for the random number generator (named `.RNG.name` and `.RNG.seed`), **JointAI** will add these to the initial values. This is necessary for reproducibility of the results but also when the MCMC chains are sampled in parallel. #### Initial values in a list of lists A list containing initial values should have the same length as the number of chains, where each element is a named list of initial values. Initial values should differ between the chains. For example, to create initial values for the parameter vector `beta` and the precision parameter `tau_SBP` for three chains: ```{r, message = FALSE} init_list <- lapply(1:3, function(i) { list(beta = rnorm(4), tau_SBP = rgamma(1, 1, 1)) }) init_list ``` The list is then passed to the argument `inits`. The amended version of the user provided lists of initial values are stored in the JointAI object: ```{r, message = FALSE} mod4a <- lm_imp(SBP ~ gender + age + WC, data = NHANES, progress.bar = 'none', inits = init_list) mod4a$mcmc_settings$inits ``` #### Initial values as a function Initial values can be specified by a function. The function should either take no arguments or a single argument called `chain`, and return a named list that supplies values for one chain. For example, to create initial values for the parameter vectors `beta` and `alpha`: ```{r, message = FALSE} inits_fun <- function() { list(beta = rnorm(4), alpha = rnorm(3)) } inits_fun() mod4b <- lm_imp(SBP ~ gender + age + WC, data = NHANES, progress.bar = 'none', inits = inits_fun) mod4b$mcmc_settings$inits ``` When a function is supplied, the function will be evaluated once per chain and the resulting list is stored. ### For which nodes can initial values be specified? Initial values can be specified for all unobserved stochastic nodes, i.e., parameters or unobserved data for which a distribution is specified in the JAGS model. Initial values have to be supplied in the format the parameter or unobserved value is used in the JAGS model. To find out which nodes there are in a model, the function `coef()` from package **rjags** can be used on a JAGS model object. It returns a list with the current values of the MCMC chains, by default the first chain. Elements of the initial values should have the same structure as the elements in this list. **Example:
** We are using a longitudinal model and the `simLong` data in this example. The output is abbreviated to show the relevant parts. ```{r, message = FALSE, warning = FALSE} mod4c <- lme_imp(bmi ~ time + HEIGHT_M + hc + SMOKE, random = ~ time | ID, data = simLong, no_model = 'time', progress.bar = 'none') str(coef(mod4c$model)) ``` ```{r echo = FALSE, message = FALSE, warning = FALSE} mod4c <- lme_imp(bmi ~ time + HEIGHT_M + hc + SMOKE, random = ~ time | ID, data = simLong, no_model = 'time', progress.bar = 'none') options(max.print = 1e5) a4 <- capture.output(coef(mod4c$model)) a4mod <- capture.output(mod4c$jagsmodel) ``` `M_ID` and `M_lvlone` are design matrices containing the the parts of the variables that belong to a given level of the hierarchy. In this example, `M_ID` contains all the subject specific variables, `M_lvlone` the time-varying variables. In **JointAI**, design matrices are always named `M_`, and `lvlone` refers to the lowest level, the level for which there is no grouping variable. The first eight rows of `M_ID` in the data that is passed to JAGS (which is stored in `data_list` in a JointAI object) are: ```{r, eval = FALSE} head(mod4c$data_list$M_ID, 8) ``` ```{r, echo = FALSE} mat <- mod4c$data_list$M_ID[1:8, ] colnames(mat) <- gsub("SMOKEsmoked until pregnancy was known", "SMOKEsmoked until[...]", gsub("SMOKEcontinued smoking in pregnancy", "SMOKEcontin[...]", colnames(mat))) mat ``` If we wanted to specify initial values for the incomplete subject specific variables we would have to specify a full matrix of initial values corresponding to `M_ID`. That matrix would have to look like this: ```{r} head(coef(mod4c$model)$M_ID, 8) ``` The matrix for the initial values has to have the same dimension as the matrix containing the data, but has `NA` wherever the value in the data is observed (e.g., the first 5 elements of the first column) and a numeric value where data is missing (e.g., the 6th value of the first column). Since `SMOKE` is a categorical covariate and coded using dummy coding, there are columns containing the dummy variables (columns 4 and 5) as well as a column containing the original version of `SMOKE` (first column). The dummy variables are calculated (not sampled) in the JAGS model and are thus completely empty in the data matrix (otherwise **JAGS** would throw an error) and the matrix of initial values. The corresponding part of the JAGS model is: ```{r, echo = FALSE} cat(paste0('[...]\n', paste0(a4mod[58:60], collapse = "\n"), '\n\n[...]\n', paste0(a4mod[69:72], collapse = "\n"), '\n\n[...]')) ``` `RinvD_bmi_ID` refers to the scale matrix in the Wishart prior for the inverse of the random effects design matrix `D_bmi_ID`. To distinguish random effects of different models and grouping levels, the names always end with `...__`. In the data that is passed to JAGS this matrix is specified as diagonal matrix, with unknown diagonal elements: ```{r} mod4c$data_list['RinvD_bmi_ID'] ``` These diagonal elements are estimated in the model and have a Gamma prior. The corresponding part of the JAGS model is: ```{r, echo = FALSE} cat(paste0('[...]\n', paste(a4mod[25:31], collapse = '\n'), '\n[...]\n')) ``` The element `RinvD_bmi_ID` in the initial values has to be a 2 $\times$ 2 matrix, with positive values on the diagonal and `NA` as off-diagonal elements, since these are fixed in the data: ```{r} coef(mod4c$model)$RinvD_bmi_ID ``` Elements that are completely unobserved, like the parameter vectors `alpha` and `beta`, the random effects `b__` (e.g. `b_bmi_ID` and `b_hc_ID`) or scalar parameters `delta_` or `tau_` are entirely specified in the initial values. ## Parallel sampling To reduce computational time, it is possible to perform sampling of multiple MCMC chains in parallel on multiple cores. This can be achieved with the help of the package [**future**](https://CRAN.R-project.org/package=future). To perform parallel sampling, a plan how to "resolve futures" needs to be specified; this is the specification that determines if sampling is performed sequentially or in parallel. For example, ```{r, eval = FALSE} future::plan(future::multisession, workers = 4) ``` specifies that the different MCMC chains are sampled in 4 different R sessions. This specification has to be done before the **JointAI** model function is called and remains in place until it is overwritten. To re-set to sequential evaluation, ```{r, eval = FALSE} future::plan(future::sequential()) ``` can be used. More information on parallel computation can be found in the help files and the [vignette of the package **future**](https://CRAN.R-project.org/package=future). Unfortunately, currently it is not possible to obtain a progress bar when using parallel computation and warning messages produced during the sampling are not returned. ## Other arguments There are two more arguments in `*_imp()` that are passed directly to the **rjags** functions `jags.model()` or `coda.samples()`: * `quiet`: should messages generated during compilation be suppressed? * `progress.bar`: allows to select the type of progress bar. Possible values are `"text"`, `"gui"` and `"none"`.