Hi everyone, I used the GENMOD procedure to obtain a Bayesian logistic regression model but am unsure how to obtain the adjusted odds ratios. This is the code that I used: data Normalprior; input _type_ $ intercept X1 X2 X3; datalines; Var 1e6 1e6 1e6 1e6 Mean 0 100 50 0 ; proc genmod data=mydata descending; model y=X1 X2 X3 / d=bin link=logit; bayes seed=1 coeffprior=normal (input=Normalprior) nmc=50000 thin=5 summary=all diagnostics=all plots=all outpost=postdata; run; Is there a way to obtain the adjusted odds ratios in SAS or do I have to manually calculate it (if so how)? Thanks in advance!
... View more