I have a response variable with six categories, 1 - 6. SAS Version: TS1M6 I am analyzing the data using GLIMMIX: PROC GLIMMIX ; CLASS rep group size ; MODEL size = group / DIST=MULT ; RANDOM rep ; OUTPUT OUT=new PRED(ILINK)=ps ; SIZE has discrete values 1, 2, 3, 4, 5, 6. When I previously used this code, the new SAS DATA set would have _LEVEL_ to identify which of the six levels of the categorical response variable the predicted cumulative probabilIty (ps) was associated with. Now, I am no longer getting the _LEVEL_ variable; just the observed value of SIZE. I want to make certain I align the correct value of SIZE with its cumulative probability for each group value. Any assistance would be appreciated. clg
... View more