Dear scientist,
My question is how to use log-logistic to model health cost data. As we know, the distribution of health cost data skewness to the right. I am considering to use methods modeling this cost data: 1, GLM with gamma, 2 OLS with lognormal, 3 log-logistic. For example, y is the cost, covariates are age and group.
For GLM I am thinking to use
For OLS with log-normal I am thinking to use
Would you please tell me whether these two modeling methods are correct and how can I model health cost with log-logistic?
Thank you very much!
Jack Liang Wang
My question is how to use log-logistic to model health cost data. As we know, the distribution of health cost data skewness to the right. I am considering to use methods modeling this cost data: 1, GLM with gamma, 2 OLS with lognormal, 3 log-logistic. For example, y is the cost, covariates are age and group.
For GLM I am thinking to use
Code:
glm y age i.group, family(gamma) link(log)
Code:
reg ln(y) age i.group
Thank you very much!
Jack Liang Wang
Comment