options ls=78; title "Two-Way MANOVA: Rice Data"; data rice; infile "D:\Statistics\STAT 505\data\rice.txt"; input block variety $ height tillers; run; proc glm; class block variety; model height tillers=block variety; lsmeans variety; manova h=variety / printe printh; run;