I want to compare three models but I wonder how to do it the cleanest way. It is a mediator, moderator and independent effects model with two covariates which I specified as follows:
H2: mediator: Model2 <- "
BAG_z ~ a*CR_z + gender_beh + age_cen_within
COG_z ~ b*BAG_z + c*CR_z + gender_beh + age_cen_within
indirect := a*b
total := c + (a*b)
"
H3: independent effects: Model3 <- "
BAG_z ~ gender_beh + age_cen_within
COG_z ~ CR_z + BAG_z + gender_beh + age_cen_within
"
I wonder about the covariate specification here, because I only added it to model 3 to make it more comparable to models 1 and 2, but it is actually not NEEDED for the model, because in this model COG_z is the only dependent variable. So I feel like I am including a regression line which is not actually necessary, but without it, I have a different nuisance structure in models 1 and 2 vs. model 3.
What would you advise? I was also thinking of maybe removing the covariates from all the three models for the moderator/mediator (so for BAG_z) to make it more comparable. Would that be a better option than to include this nonsensical regression in model 3?
I hope my questions are a bit clear. Just for information, I use a bayesian approach in which the models are compared using LOOIC.
Thanks so much for your advise.
Carolien Torenvliet