




























Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
An in-depth exploration of the Split-Plot Design, a statistical method used to analyze experiments with both whole and subplot factors. the origins of the design, its structure, and its differences from other statistical models. It also includes examples of SAS programs and output for analyzing data using this design.
Typology: Exams
1 / 36
This page cannot be seen from the preview
Don't miss anything!





























Department of Statistics Purdue University
data new; infile "soy.dat"; input farm fert var resp;
proc glm plots=all; Pooling; class farm fert var; model resp=farm fert farmfert var fertvar; random farm farm*fert / test;
proc glm plots=all; No pooling; class farm fert var; model resp=farm fert farmfert var farmvar fertvar; random farm farmfert farm*var / test;
Dependent Variable: resp Sum of Source DF Squares Mean Square F Value Pr > F Model 9 35.09833333 3.89981481 137.64 <. Error 8 0.22666667 0. Cor Total 17 35.
Source DF Type III SS Mean Square F Value Pr > F farm 2 28.86333333 14.43166667 509.35 <. fert 1 0.84500000 0.84500000 29.82 0. farmfert 2 0.04333333 0.02166667 0.76 0.4967* var 2 5.34333333 2.67166667 94.29 <.0001* fertvar 2 0.00333333 0.00166667 0.06 0.9433
*Correct F-test **Necessary to keep in model to maintain SP structure
Tests of Hypotheses for Mixed Model Analysis of Variance
Source DF Type III SS Mean Square F Value Pr > F farm 2 28.863333 14.431667 666.08 0. fert 1 0.845000 0.845000 39.00 0. MS(farm*fert) 2 0.043333 0.
farmfert 2 0.043333 0.021667 0.76 0. var 2 5.343333 2.671667 94.29 <. fertvar 2 0.003333 0.001667 0.06 0. MS(Error) 8 0.226667 0.
Tests of Hypotheses for Mixed Model Analysis of Variance
Source DF Type III SS Mean Square F Value Pr > F fert 1 0.845000 0.845000 39.00 0. MS(farm*fert) 2 0.043333 0.
farmfert 2 0.043333 0.021667 0.65 0. farmvar 4 0.093333 0.023333 0.70 0. fert*var 2 0.003333 0.001667 0.05 0. MS(Error) 4 0.133333 0.
var 2 5.343333 2.671667 114.50 0. MS(farm*var) 4 0.093333 0.
Sum of Source DF Squares Mean Square F Value Pr > F Model 3 9.90277778 3.30092593 457.05 0. Error 2 0.01444444 0. Cor Total 5 9.
Source DF Type III SS Mean Square F Value Pr > F farm 2 9.62111111 4.81055556 666.08 0. fert 1 0.28166667 0.28166667 39.00 0.
**** Same results *****
proc mixed plots=all; no pooling; class fert var farm; model resp=fert|var / ddfm=kr; random farm farmfert farmvar; Cov Parm Estimate FARM 2. FERTFARM 0. VARFARM 0. Residual 0.
Tests of Fixed Effects Source NDF DDF Type III F Pr > F FERT 1 10 31.30 0. VAR 2 10 98.95 <. FERT*VAR 2 10 0.06 0.
ddfm=kr is causing pooling of WP and SP errors Need to remove ddfm=kr or use the nobound option
proc mixed plots=all; *pooling; class fert var farm; model resp=fert|var / ddfm=kr; random farm farmfert;
Cov Parm Estimate FARM 2. FERT*FARM 0. Residual 0.
Tests of Fixed Effects Source NDF DDF Type III F Pr > F FERT 1 10 31.30 0. VAR 2 10 98.95 <. FERT*VAR 2 10 0.06 0.
ddfm=kr is causing pooling of WP and SP errors Need to remove ddfm=kr or use the nobound option