Greetings all, I have a plant characterization data from two locations. There were 95 genotypes of plant used in the study. After running a two-way anova test on it using "PROC GLM" and the class as "genotypes" and "locations", i found out the output is not separating the results per each location. Instead, it is giving me a combined result of the two locations as one. Below is the code used and a view of the result. I s there anything i am doing wrong? Secondly in the means separation, it shows high level of difference, how do i report this? Thanks. code: options ls=100 ps=1000 nocenter nolabel pageno=1;
data phd;
set olusam.phd;
run;
proc print data=phd; run;
proc sort data=phd;
by lctns accns rep;
run;
ODS RTF LISTING;
ODS RTF FILE='phd.rtf';
title glm phd;
proc glm data=phd plots=none;
class lctns accns;
model yield ph lle lwi dtf npet nol gct pel d50f npod nseed hswt tswt seedl seedw seedt = lctns accns lctns*accns;
means accns /duncan;
quit;
run;
ODS RTF CLOSE; Anova result for one of the variables Means separation
... View more