Hello,
I would like to ask for a clarification. If anyone could help me, I will be very much obliged. I have an experiment with five treatments (diets fed to animals in different parks), the response score was measured everyday, for 35 days. response variable is ordinal with three levels: 0 no effect, 1 mild effect, 2 high effect.
I have tried the following approach
proc glimmix data=score method=?;
class diet score;
model score = diet / link=cumlogit dist=multinomial;
random time / sub=park type=ar(1);
I have tried several 'method=' but would like advice which would best apply.
Also, in this paper with a similar approach, authors calculate the probability of score HIGH, which I would also like to apply here. Authors state the following formula but I'm not aware how to obtain the logit values in my case:
p = exp(logit)/(1 + exp(logit))
https://www.mdpi.com/2076-2615/13/21/3350
Any ideas appreciated.
For anyone who might see this,
I found this very nice tutorial on the subject
https://agstats.ca/2019/06/25/working-with-binary-and-multinomial-data-in-glimmix/
and am currently working with following script:
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
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.