Hello - I am analyzing my data with ProcGlimmix and the LSMeans statement, with the Lines command for letter separation. I am writing about the statistical analysis I am doing, and realized I don't know what model that the Lines command uses to determine separation (Fishers, Bonferroni, Tukey, etc.) I've included the code, although I don't think it's necessary. Does anyone know what test is used, and what source I can use to cite that? I have been looking all over but haven't been able to find a straight answer. Thank you so much! proc glimmix data=Bruise nobound plots=studentpanel; class cls Inoc bruise Rep ; model wcorr = cls|bruise|inoc /dist=n ddfm=kr; random rep; lsmeans cls|bruise /pdiff lines cl; run;
... View more