Hi guys, I am struggling now to make a plot for the ratios and their confidence intervals from proc genmod. The code is now like: proc genmod data=fmdfmd; class dummy_fmd_bed (ref='0'); model had_procedure (event='1')=age_at_dx dummy_fmd_bed dxtest_renal pmh_dissection pmh_aneurysm pres_hypertension pres_dissection_car_vert meds_no_of_bp_meds/alpha=0.1 dist=bin link=log; estimate 'age_at_dx' age_at_dx -10/ exp alpha=0.1; estimate 'dummy_fmd_bed' dummy_fmd_bed 1 -1/exp alpha=0.1; estimate 'dxtest_renal' dxtest_renal 1 -1/exp alpha=0.1; estimate 'pmh_dissection' pmh_dissection 1 -1/exp alpha=0.1; estimate 'pmh_aneurysm' pmh_aneurysm 1 -1/exp alpha=0.1; estimate 'pres_dissection_car_vert' pres_dissection_car_vert 1 -1/exp alpha=0.1; estimate 'pres_hypertension' pres_hypertension 1 -1/exp alpha=0.1; estimate 'meds_no_of_bp_meds' meds_no_of_bp_meds 1 /exp alpha=0.1; run; So these exponentiation estimate can give the ratios, but i want a plot of these ratios just like the odds ratio plots. Is there any way to do it?
... View more