Hello,
I am trying to run the following code:
proc logistic data=l;
class trt(ref="0") group GR1 GR1/ param=ref;
model crit(event="1")= trt group BASE GR1 GR1 / alpha=0.05 expb plcl plrl lackfit orpvalue;
Run;
base is continuous variable, all others are binary. I get the following NOTE: At least one element of the (projected) gradient is greater than 1e-3 and it looks that this is due to calculating p-value. if orpvalue removed from the model statement, this note is not present anymore. Is there any other way to calculate p-value for Odds Ratio with proc logistic or example of how to do this with proc glimmix or genmode?
Thank you
There are some alternative ways in
... SAS Note 53376: "Computing p-values for odds ratios."
https://support.sas.com/kb/53/376.html
Ciao, Koen
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
ANOVA, or Analysis Of Variance, is used to compare the averages or means of two or more populations to better understand how they differ. Watch this tutorial for more.
Find more tutorials on the SAS Users YouTube channel.