Is there a way I can report odds ratio comparing 2 points for a GAM model?
proc gampl data=mydata;
class gender / param=ref;
model response(event='1') = gender spline(age) / dist=binary link=logit;
run;
For eg, is there a way, I can report OR at say age=65 to age=75? I know that R has an package, oddsratio specifically for GAM to get such odds ratios. How can we replicate something similar in SAS?