This is my code:
proc glm data = WORK.RANDOMISED;
class Breed treatment;
model perecentfall= Breed treatment perecentfall;
means Breed treatment / lsd;
run;
This is the only message in the log window:
339 proc glm data = WORK.RANDOMISED;
340 class Breed treatment;
341 model perecentfall= Breed treatment perecentfall;
342 means Breed treatment / lines lsd;
343 run;
NOTE: Means from the MEANS statement are not adjusted for other terms in the model. For adjusted
means, use the LSMEANS statement.
This is my out put
Does anyone have any idea as to why this is? or if this is in fact fine?