/*Changed plant 2, plot 1 from 28.6 to 38.6*/ options ls=75; data one; input plant @; do plot=1 to 3; input protein @; output; end; cards; 1 42.4 41.0 39.6 2 38.6 36.3 42.2 3 43.2 42.1 40.2 4 40.8 41.0 38.9 5 41.0 38.3 41.1 6 39.4 39.5 37.2 7 39.6 40.4 38.9 8 38.1 38.3 37.9 9 35.9 36.1 35.6 10 39.6 39.9 39.7 ; run; proc mixed method=type3; class plant; model protein=/s cl ; random plant; run;