Hi,
I have a data set from a cohort study. I have imputed missing data using multiple imputations (40), and I am now performing linear regression using the following command (Stata version 14.0):
mi estimate, post: regress log_IgE c.log_PFOS i. birthseason i.parity_gr i.smoking
I would like to check for homoscedasticity and normality of the residuals, but I am not sure how to do that? I was hoping someone here might be able to help.
A small note:
I have added the post-option to be able to use the beta-estimates in calculating the change in outcome with a doubling of the exposure, since both the exposure and outcome are log transformed (using log10):
di "Change in IgE with a doubling of PFOS "
di ((2^_b[log_PFOS])-1)*100
di ((2^(_b[log_PFOS] - invnormal(.975)*_se[log_PFOS]))-1)*100
di ((2^(_b[log_PFOS] + invnormal(.975)*_se[log_PFOS]))-1)*100
Best regards,
Amalie
I have a data set from a cohort study. I have imputed missing data using multiple imputations (40), and I am now performing linear regression using the following command (Stata version 14.0):
mi estimate, post: regress log_IgE c.log_PFOS i. birthseason i.parity_gr i.smoking
I would like to check for homoscedasticity and normality of the residuals, but I am not sure how to do that? I was hoping someone here might be able to help.
A small note:
I have added the post-option to be able to use the beta-estimates in calculating the change in outcome with a doubling of the exposure, since both the exposure and outcome are log transformed (using log10):
di "Change in IgE with a doubling of PFOS "
di ((2^_b[log_PFOS])-1)*100
di ((2^(_b[log_PFOS] - invnormal(.975)*_se[log_PFOS]))-1)*100
di ((2^(_b[log_PFOS] + invnormal(.975)*_se[log_PFOS]))-1)*100
Best regards,
Amalie
Comment