Hello I would like to create a forest plots for the odds ratios of the depedent variable on the outcome.
I have 5 models.
I have tried
// If function is not allowed
The plan was then to use -coef-plot
I only wanted to show the outcomes of mi_30 and stroke_30 for procedure == 0 and procedure ==1 on the coef plot.
However, the -coef- will plot all the OR of all the predictors inlcuding ASA - which is not what I want
Is there an alternative?
I have 5 models.
I have tried
Code:
//Mi - model 1 quietly logit mi_30 asa [pw=_weight], or if procedure == 0 //stroke - model 2 queitly logit stroke_30 asa [pw=_weight], or if procedure == 0
The plan was then to use -coef-plot
Code:
coefplot, drop(˙cons) xline(1) eform xtitle(Odds ratio)
However, the -coef- will plot all the OR of all the predictors inlcuding ASA - which is not what I want
Is there an alternative?
Comment