Parameter Selection

How to specify which parameters to monitor and display in the results.

2019-08-29

In this vignette, we use the NHANES data for examples in cross-sectional data and the dataset simLong for examples in longitudinal data. For more info on these datasets, check out the vignette Visualizing Incomplete Data, in which the distribution of variables and missing values in both sets is explored.

Note:
In several of the examples we use n.adapt = 0 (and n.iter = 0, which is the default) in order to prevent the MCMC sampling to reduce computational some time. progress.bar = 'none' prevents printing of the progress of the MCMC sampling, which results in lengthy output in the vignette, but is useful in practice.

Monitoring parameters

JointAI uses JAGS for performing the MCMC (Markov Chain Monte Carlo) sampling. Since JAGS only saves the values of MCMC chains for those parameters/variables for which the user has specified that they should be monitored, this is also the case in JointAI.

For this purpose, the main functions *_imp() have an argument monitor_params.

monitor_params takes a named list (often a named vector also works) with the following possible entries:

name/key word what is monitored
analysis_main betas and sigma_y (and D in mixed models)
analysis_random ranef, D, invD, RinvD
imp_pars alphas, tau_imp, gamma_imp, delta_imp
imps imputed values
betas regression coefficients of the analysis model
tau_y precision of the residuals from the analysis model
sigma_y standard deviation of the residuals from the analysis model
ranef random effects
D covariance matrix of the random effects
invD inverse of D
RinvD scale matrix in Wishart prior for invD
alphas regression coefficients in the imputation models
tau_imp precision parameters of the residuals from imputation models
gamma_imp intercepts in ordinal imputation models
delta_imp increments of ordinal intercepts
other additional parameters

Each of the key words works as a switch.

Parameters of the analysis model

The default setting is monitor_params = c(analysis_main = TRUE), i.e., only the main parameters of the analysis model are monitored, and monitoring is switched off for all other parameters.

The main parameters are the regression coefficients of the analysis model (beta) and potentially the residual standard deviation (sigma_y), for example in linear models.

The function parameters() returns the parameters that are specified to be followed (even for models where no MCMC sampling was performed, i.e. when n.iter = 0 and n.adapt = 0).

For example:

lm1 <- lm_imp(SBP ~ gender + WC + alc + creat, data = NHANES,  n.adpat = 0)

parameters(lm1)
#> [1] "(Intercept)"  "genderfemale" "WC"           "alc>=1"       "creat"        "sigma_SBP"

Note that instead of "beta" the names of the covariates are returned that are associated with the different elements of beta.

Imputed values & parameters of the imputation models

To generate (multiple) imputed datasets that can be used for further analyses, the imputed values need to be monitored. This can be done by setting monitor_params = c(imps = TRUE).

lm2 <- lm_imp(SBP ~ age + WC + alc + smoke + occup,
              data = NHANES, n.adapt = 0,
              monitor_params = c(imps = TRUE, analysis_main = FALSE)
)

parameters(lm2)
#>  [1] "Xc[33,3]"    "Xc[150,3]"   "Xc[1,8]"     "Xc[7,8]"     "Xc[8,8]"     "Xc[12,8]"   
#>  [7] "Xc[13,8]"    "Xc[21,8]"    "Xc[22,8]"    "Xc[31,8]"    "Xc[33,8]"    "Xc[34,8]"   
#> [13] "Xc[39,8]"    "Xc[49,8]"    "Xc[66,8]"    "Xc[67,8]"    "Xc[80,8]"    "Xc[86,8]"   
#> [19] "Xc[91,8]"    "Xc[92,8]"    "Xc[105,8]"   "Xc[111,8]"   "Xc[115,8]"   "Xc[118,8]"  
#> [25] "Xc[120,8]"   "Xc[127,8]"   "Xc[132,8]"   "Xc[139,8]"   "Xc[146,8]"   "Xc[149,8]"  
#> [31] "Xc[152,8]"   "Xc[163,8]"   "Xc[165,8]"   "Xc[169,8]"   "Xc[180,8]"   "Xc[185,8]"  
#> [37] "Xcat[6,1]"   "Xcat[16,1]"  "Xcat[24,1]"  "Xcat[27,1]"  "Xcat[45,1]"  "Xcat[57,1]" 
#> [43] "Xcat[58,1]"  "Xcat[60,1]"  "Xcat[61,1]"  "Xcat[65,1]"  "Xcat[66,1]"  "Xcat[70,1]" 
#> [49] "Xcat[80,1]"  "Xcat[81,1]"  "Xcat[85,1]"  "Xcat[88,1]"  "Xcat[89,1]"  "Xcat[90,1]" 
#> [55] "Xcat[101,1]" "Xcat[104,1]" "Xcat[116,1]" "Xcat[133,1]" "Xcat[137,1]" "Xcat[143,1]"
#> [61] "Xcat[168,1]" "Xcat[170,1]" "Xcat[180,1]" "Xcat[186,1]" "Xcat[16,2]"  "Xcat[99,2]" 
#> [67] "Xcat[123,2]" "Xcat[156,2]" "Xcat[158,2]" "Xcat[166,2]" "Xcat[172,2]"

JointAI uses a number of different design matrices to store different types of variables. The matrix Xc is the design matrix of cross-sectional covariates. For categorical incomplete variables (with more than 2 categories) the original variable is stored in the matrix Xcat and Xc contains the corresponding dummy coded variables. Hence, the imputed values of continuous and binary variables are elements of Xc and imputed values of categorical variables are elements of Xcat.

The parameters of the models for the incomplete variables can be selected with monitor_params = c(imp_pars = TRUE). This will set monitors for the regression coefficients (alpha) and other parameters, such as precision (tau_*) and intercepts & increments (gamma_* and delta_*) in cumulative logit models.

lm3 <- lm_imp(SBP ~ age + WC + alc + smoke + occup, data = NHANES, n.adapt = 0,
              monitor_params = c(imp_pars = TRUE, analysis_main = FALSE)
)

parameters(lm3)
#> [1] "alpha"       "tau_WC"      "gamma_smoke" "delta_smoke"

Side note: Getting information about of the imputation models

An overview of the imputation models used, including the names of the parameters and the hyperparameters can be obtained with

list_models(lm2)
#> Linear regression model for "WC"
#> * Predictor variables: 
#>   (Intercept), age
#> * Regression coefficients: 
#>   alpha[1:2] (normal prior(s) with mean 0 and precision 1e-04)
#> * Precision of 'WC':
#>   tau_WC (Gamma prior with shape parameter 0.01 and rate parameter 0.01)
#> 
#> Cumulative logit model for "smoke"
#> * Reference category: "never"
#> * Predictor variables: 
#>   age, WC
#> * Regression coefficients: 
#>   alpha[3:4] (normal prior(s) with mean 0 and precision 1e-04)
#> * Intercepts:
#>   - never: gamma_smoke[1] (normal prior with mean 0 and precision 1e-04)
#>   - former: gamma_smoke[2] = gamma_smoke[1] + exp(delta_smoke[1])
#> * Increments:
#>   delta_smoke[1] (normal prior(s) with mean 0 and precision 1e-04)
#> 
#> Multinomial logit model for "occup"
#> * Reference category: "working"
#> * Predictor variables: 
#>   (Intercept), age, WC, smokeformer, smokecurrent
#> * Regression coefficients: 
#>   - 'occuplooking for work': alpha[5:9] (normal prior(s) with mean 0 and precision 1e-04)
#>   - 'occupnot working': alpha[10:14] (normal prior(s) with mean 0 and precision 1e-04)
#> 
#> Logistic regression model for "alc"
#> * Reference category: "<1"
#> * Predictor variables: 
#>   (Intercept), age, WC, smokeformer, smokecurrent, occuplooking for work, occupnot working
#> * Regression coefficients: 
#>   alpha[15:21] (normal prior(s) with mean 0 and precision 1e-04)

Side note: How to extract imputed datasets

Imputed datasets can be extracted and exported with the function get_MIdat(). A completed dataset is created by taking the imputed values from a randomly chosen iteration of the MCMC sample (transforming them back to the original scale, if scaling had been performed during the MCMC sampling) and filling them into the original, incomplete data.

get_MIdat() returns a long-format data.frame containing the imputed datasets (and possibly the original data) stacked onto each other. The imputation number is given in the variable Imputation_, column .id contains a newly created id variable for each observation in cross-sectional data (multi-level data should already contain an id variable).

get_MIdat() takes the arguments:

argument explanation
object ‘an object of class ’JointAI’
m number of datasets to be created
include logical; should the original data be included?
start the first iteration that may be randomly chosen (i.e., all previous iterations are discarded as burn-in)
minspace minimum number of iterations between iterations chosen as imputed values
seed optional seed value in order to make the random selection of iterations reproducible
export_to_SPSS logical; should the datasets be exported to SPSS, i.e., written as .txt and .sps file? If export_to_SPSS = FALSE (default) the imputed data is only returned data.frame
resdir directory the files are exported to
filename the name of the .txt and .sps files

Random effects

For mixed models, analysis_main also includes the random effects covariance matrix D:

lme1 <- lme_imp(bmi ~ age + EDUC, random = ~age | ID, data = simLong, n.adapt = 0)

parameters(lme1)
#> [1] "(Intercept)" "EDUCmid"     "EDUClow"     "age"         "sigma_bmi"   "D[1,1]"     
#> [7] "D[1,2]"      "D[2,2]"

Setting analysis_random = TRUE will switch on monitoring for the random effects (ranef), random effects covariance matrix (D), inverse of the random effects covariance matrix (invD) and the diagonal of the scale matrix of the Wishart-prior of invD (RinvD).

lme2 <- lme_imp(bmi ~ age + EDUC, random = ~age | ID, data = simLong, n.adapt = 0,
                monitor_params = c(analysis_random = TRUE))

parameters(lme2)
#>  [1] "(Intercept)" "EDUCmid"     "EDUClow"     "age"         "sigma_bmi"   "b"          
#>  [7] "invD[1,1]"   "invD[1,2]"   "invD[2,2]"   "D[1,1]"      "D[1,2]"      "D[2,2]"     
#> [13] "RinvD[1,1]"  "RinvD[2,2]"

It is possible to select only a subset of the random effects parameters by specifying them directly, e.g.

lme3a <- lme_imp(bmi ~ age + EDUC, random = ~age | ID, data = simLong, n.adapt = 0,
                 monitor_params = c(analysis_main = TRUE, RinvD = TRUE))

parameters(lme3a)
#>  [1] "(Intercept)" "EDUCmid"     "EDUClow"     "age"         "sigma_bmi"   "D[1,1]"     
#>  [7] "D[1,2]"      "D[2,2]"      "RinvD[1,1]"  "RinvD[2,2]"

or by switching unwanted parts of analysis_random off, e.g.

lme3b <- lme_imp(bmi ~ age + EDUC, random = ~age | ID, data = simLong, n.adapt = 0,
                monitor_params = c(analysis_main = TRUE,
                                   analysis_random = TRUE,
                                   RinvD = FALSE,
                                   ranef = FALSE))

parameters(lme3b)
#>  [1] "(Intercept)" "EDUCmid"     "EDUClow"     "age"         "sigma_bmi"   "invD[1,1]"  
#>  [7] "invD[1,2]"   "invD[2,2]"   "D[1,1]"      "D[1,2]"      "D[2,2]"

Other parameters

The element other in monitor_params allows to specify one or multiple additional parameters to be monitored. When other is used with more than one element, monitor_params has to be a list.

Here, we monitor the probability to be in the alc>=1 group for subjects 1 through 3 and the expected value of the distribution of creat for the first subject. (This may not make a lot of sense here but being able to monitor any node in a JAGS model can be quite useful when investigating convergence issues.)

lm4 <- lm_imp(SBP ~ gender + WC + alc + creat, data = NHANES,
              monitor_params = list(analysis_main = FALSE,
                                    other = c('p_alc[1:3]', "mu_creat[1]")))

parameters(lm4)
#> [1] "p_alc[1:3]"  "mu_creat[1]"

Subsets of Parameters for Plots, Summaries, etc.

The functions summary(), traceplot(), densplot(), GR_crit() and MC_error() all have an argument subset. This argument allows us to select a subset of parameters to be shown in the output. Especially when not only the parameters of the main analysis model are followed, but also, for example, imputed values, looking at a subset may be desirable.

subset follows the same logic as monitor_params described above.

By default, only the parameters of the main analysis model are displayed if they were monitored:

# Run a model monitoring analysis parameters and imputation parameters
lm5 <- lm_imp(SBP ~ gender + WC + alc + creat, data = NHANES, n.iter = 100,
              progress.bar = 'none', monitor_params = c(imp_pars = TRUE))

# model summary
summary(lm5)
#> 
#>  Linear model fitted with JointAI 
#> 
#> Call:
#> lm_imp(formula = SBP ~ gender + WC + alc + creat, data = NHANES, 
#>     n.iter = 100, monitor_params = c(imp_pars = TRUE), progress.bar = "none")
#> 
#> Posterior summary:
#>                 Mean    SD   2.5%   97.5% tail-prob. GR-crit
#> (Intercept)  81.6511 9.662 64.828 102.890    0.00000    1.06
#> genderfemale  0.0853 2.608 -4.701   5.228    0.97333    1.02
#> WC            0.3096 0.077  0.162   0.463    0.00000    1.08
#> alc>=1        6.2295 2.577  1.533  10.927    0.00667    1.00
#> creat         6.8306 7.933 -8.969  20.961    0.38667    1.06
#> 
#> Posterior summary of residual std. deviation:
#>           Mean    SD 2.5% 97.5% GR-crit
#> sigma_SBP 14.4 0.734 13.2    16    1.01
#> 
#> 
#> MCMC settings:
#> Iterations = 101:200
#> Sample size per chain = 100 
#> Thinning interval = 1 
#> Number of chains = 3 
#> 
#> Number of observations: 186

# traceplot of the MCMC sample
traceplot(lm5)


# density plot of the MCMC sample
densplot(lm5)


# Gelman-Rubin criterion
GR_crit(lm5)
#> Potential scale reduction factors:
#> 
#>              Point est. Upper C.I.
#> (Intercept)        1.02       1.06
#> genderfemale       1.00       1.02
#> WC                 1.02       1.08
#> alc>=1             1.00       1.00
#> creat              1.01       1.06
#> sigma_SBP          1.00       1.01
#> 
#> Multivariate psrf
#> 
#> 1.02

# Monte Carlo Error of the MCMC sample
MC_error(lm5)
#>                 est   MCSE    SD MCSE/SD
#> (Intercept)  81.651 0.5578 9.662   0.058
#> genderfemale  0.085 0.1506 2.608   0.058
#> WC            0.310 0.0047 0.077   0.062
#> alc>=1        6.229 0.1787 2.577   0.069
#> creat         6.831 0.4580 7.933   0.058
#> sigma_SBP    14.431 0.0458 0.734   0.062

When analysis_main was not switched on the default behavior is that all parameters are displayed:

# Re-run the model from above, now creating MCMC samples
lm4 <- lm_imp(SBP ~ gender + WC + alc + creat,
              data = NHANES, n.iter = 100, progress.bar = 'none',
              monitor_params = list(analysis_main = FALSE,
                                    other = c('mu_alc[1:3]', "mu_creat[1]")))

traceplot(lm4, ncol = 4)

Select a subset of the variables to display

To display other parts of the MCMC sample, subset needs to be specified:

# we use lm5 from above
GR_crit(lm5, subset = c(analysis_main = FALSE, imp_pars = TRUE))
#> Potential scale reduction factors:
#> 
#>           Point est. Upper C.I.
#> alpha[1]       1.037       1.13
#> alpha[2]       1.034       1.12
#> alpha[3]       0.998       1.00
#> alpha[4]       1.004       1.02
#> alpha[5]       0.998       1.00
#> alpha[6]       1.057       1.19
#> alpha[7]       1.117       1.36
#> alpha[8]       1.021       1.08
#> alpha[9]       1.081       1.26
#> tau_WC         1.006       1.03
#> tau_creat      1.002       1.01
#> 
#> Multivariate psrf
#> 
#> 1.11

To select only some of the parameters, they can be specified directly by name via the other element of subset:

summary(lm5, subset = list(other = c('creat', 'alc>=1')))
#> 
#>  Linear model fitted with JointAI 
#> 
#> Call:
#> lm_imp(formula = SBP ~ gender + WC + alc + creat, data = NHANES, 
#>     n.iter = 100, monitor_params = c(imp_pars = TRUE), progress.bar = "none")
#> 
#> Posterior summary:
#>        Mean   SD  2.5% 97.5% tail-prob. GR-crit
#> creat  6.83 7.93 -8.97  21.0    0.38667    1.06
#> alc>=1 6.23 2.58  1.53  10.9    0.00667    1.00
#> 
#> 
#> MCMC settings:
#> Iterations = 101:200
#> Sample size per chain = 100 
#> Thinning interval = 1 
#> Number of chains = 3 
#> 
#> Number of observations: 186

This also works when a subset of the imputed values should be displayed:

# Re-run the model from above, now creating MCMC samples
lm2 <- lm_imp(SBP ~ age + WC + alc + smoke + occup,
              data = NHANES, n.iter = 100, progress.bar = 'none',
              monitor_params = c(imps = TRUE, analysis_main = FALSE)
)

# select only imputed values for 'WC' (3rd column of Xc)
sub3 <- grep('Xc\\[[[:digit:]]+,3\\]', parameters(lm2), value = TRUE)
sub3
#> [1] "Xc[33,3]"  "Xc[150,3]"

traceplot(lm2, subset = list(other = sub3), ncol = 2)

Random subset of subject-specific values

When the number of imputed values is larger, or in order to check convergence of random effects, it may not be feasible to plot all traceplots. In that case, a random subset of, for instance the random effects, can be selected:

lme4 <- lme_imp(bmi ~ age + EDUC, random = ~age | ID,
                data = simLong, n.iter = 100, progress.bar = 'none',
                monitor_params = c(analysis_main = FALSE, ranef = TRUE))

# exract random intercepts
ri <- grep('^b\\[[[:digit:]]+,1\\]$', colnames(lme4$MCMC[[1]]), value = T)

# extract random slopes
rs <- grep('^b\\[[[:digit:]]+,2\\]$', colnames(lme4$MCMC[[1]]), value = T)

# plot the chains of 8 randomly selected random intercepts
traceplot(lme4, subset = list(other = sample(ri, size = 8)), ncol = 4)


# plot the chains of 8 randomly selected random slopes
traceplot(lme4, subset = list(other = sample(rs, size = 8)), ncol = 4)