Steve, Thanks again for the help, but I'm still running into some issues. It looks like Proc glimmix doesn't include a joint option for lsmestimate statements. It does provide an FTEST option. Should I be using this? I've been scouring the web all morning for examples of how to use this with my code, and have totally drawn a blank. I've copied a bit of what have below: proc glimmix data=in; class mouse treatment day; model score = treatment*day; random day / subject=Mouse group=treatment; lsmestimate treatment*day 'treatment1 vs treatment2' .125 .125 .125 .125 .125 .125 .125 .125 -.071 -.071 -.071 -.071 -.071 -.071 -.071 -.071 -.071 -.071 -.071 -.071 -.071 -.071 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0, lsmestimate treatment*day 'treatment1 vs treatment3' .125 .125 .125 .125 .125 .125 .125 .125 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -.071 -.071 -.071 -.071 -.071 -.071 -.071 -.071 -.071 -.071 -.071 -.071 -.071 -.071 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0; run; I have a few more lsmestimate statements included in the full code, but they pretty much follow the examples I provided. Note, Group 1 only has 8 'days', while the other groups have 14, hence the differential weighting. I'm also correcting for multiple comparisons as you suggested, but using proc multtest in a separate step. So, given what I've provided, how would the FTEST option (if that's correct) fit into my LSMESTIMATE statements as written? Do I need a new LSMESTIMATE statement that will use the FTEST option? If so, how do I weight the individual cells to give me appropriate weights. I'm used to one cell being positive and the other negative, but that doesn't seem right in the case of the FTEST/JOINT option. Sorry to belabor the issues I'm having, but I simply can't find useful examples of this online, and thus have to resort back to the forum for help. Thanks.
... View more