Since you have ordinal data, I would use Proportional Odds Model (aka Ordinal Logistic Regression Model) to analyse this data with cumulative logit link function. I will then report the odds ratio for the last 3 groups relative to the reference category.
If using R, I would look to use polr in the MASS package, which is very handy.Code:*In SAS; proc genmod data=mydata; freq mycount; model severtiy.grade = group / dist=mult link=cumlogit; run;





Reply With Quote
