Dear SAS Communities,
I'm using genmod to analyze the relationship between a continuous dependent variable (Fruit_firmness) and two predictor variables; harvest_month (1, 2, 4, 6, 8 ) and storage_weeks (0, 1, 3, 6). With the code I am using I'm able to see that the predictors are significantly associated with the dependent variable in the Table of Max Likelihood Estimates. However, is there a way to get more output information to further explore this association (like the information you get in the Odds Ratio Estimates Table when using proc logistic)?
proc genmod data=one; where Variety='BL516' and Season=2021; model Fruit_firmness= harvest_month storage_weeks/dist=gamma link=log; output out=out predicted=Fruit_firmness; run;
I would greatly appreciate your feedback!
Thanks
Caroline
... View more