In proc glimmix multiple comparisons exist for lsmeans by pdiff combined with adjust, e.g. PDIFF=ALL ADJUST=bon (yes, tukey would be the better choice, still I'd like to use bonferroni). I can get the compact letter display (cld) with an additional lines statement. lsmeans f1*f2 / PDIFF=ALL ADJUST=bon LINES; With this code I request all tukey-comparisons (all combinations) but I am just interested in a few. Therefore I coded my comparisons of interest with lsmestimate. To adjust for multiple comparisons I use adjust=bon adjdfe=row. lsmestimate f1*f2 'comp1' [1, 1 1] [-1, 2 1],
'comp2' [1, 1 1] [-1, 3 1],
'comp3' [1, 1 1] [-1, 4 1],
'comp4' [1, 2 1] [-1, 3 1],
... / cl adjust=bon adjdfe=row; Now my question: Is it possible to get a letter display only for those comparisons of interest and not all tukey-ones as in lsmeans? I somehow have to redefine the pdiff option but I am not aware how to easily solve that task. Any ideas on how to get such a table? I'd greatly appreciate it!
... View more