Hi, all!
I'm running mixed models in Stata 15 in order to find out if level-1 variable is mediating the effect of level-2 variable to life satisfaction. The models are as follows:
I'm primarily interested in changes at level2variable's estimate after adding level-1 variables and cross-level interaction term. There's two problems I'm struggling with:
1) The standardized beta coefficients for level-2 variable are 0.149 (model 1), 0.077 (model 2) and 0.139 (model 3). So the effect of level-2 variable decreases about 50% when the level-1 variable is accounted for, which I'm interpreting as mediating effect. But the value returns almost to original value when the cross-level interaction is added implicating there's no mediating effect. How can this be?
2) Is it even appropriate to include id: level1variable when there's already interaction term in the model? If so, how can it be interpreted?
I'm running mixed models in Stata 15 in order to find out if level-1 variable is mediating the effect of level-2 variable to life satisfaction. The models are as follows:
Code:
MODEL 1: mixed satisfaction level2variable || country:, mle MODEL 2: mixed satisfaction level2variable level1variable || country: level1variable, mle cov(uns) MODEL 3: mixed satisfaction c.level2variable##c.level1variable || country: level1variable, mle cov(uns)
1) The standardized beta coefficients for level-2 variable are 0.149 (model 1), 0.077 (model 2) and 0.139 (model 3). So the effect of level-2 variable decreases about 50% when the level-1 variable is accounted for, which I'm interpreting as mediating effect. But the value returns almost to original value when the cross-level interaction is added implicating there's no mediating effect. How can this be?
2) Is it even appropriate to include id: level1variable when there's already interaction term in the model? If so, how can it be interpreted?
Comment