Hello,
I am running a model to see if my predictor (PSAI) predicts my outcome (PTSD), and whether there is a significant interaction between PSAI and sex ('sexXpsai' is an interaction I manually calculated):
To calculate the separate effects by sex, I have used lincom, e.g.
As in my initial SEM I had asked for the standardized results, I re-ran the lincom with the 'estat stdize' option:
I am getting very different results from lincom depending on whether or not I standardize it. E.g.:
β=0.38 (-.34, 1.10), p=.297 (lincom non-standardised)
β=0.03 (-.001, .07), p=.057 (lincom standardised)
I would have expected the coefficients to be different, but I'm unsure why the p-value is so different.
I have tried running the SEM without vce(robust) and without method(mlmv) and I still get very different results.
The stata manual says lincom can be run after SEM, and that 'estat stdize' can be used with lincom, so I'm not sure why my results are so different.
I would appreciate any advice
All the best
I am running a model to see if my predictor (PSAI) predicts my outcome (PTSD), and whether there is a significant interaction between PSAI and sex ('sexXpsai' is an interaction I manually calculated):
sem (ptsd <- psai mum_edu ethnicity sex sexXpsai ), method(mlmv) vce(robust) stand
lincom psai + sexXpsai
estat stdize: lincom psai+ sexXpsai
β=0.38 (-.34, 1.10), p=.297 (lincom non-standardised)
β=0.03 (-.001, .07), p=.057 (lincom standardised)
I would have expected the coefficients to be different, but I'm unsure why the p-value is so different.
I have tried running the SEM without vce(robust) and without method(mlmv) and I still get very different results.
The stata manual says lincom can be run after SEM, and that 'estat stdize' can be used with lincom, so I'm not sure why my results are so different.
I would appreciate any advice
All the best
Comment