You are on page 1of 4

data tech1;

input tech sec;


datalines;
1 45.6
1 41.0
1 46.4
1 50.7
1 47.9
1 44.6
2 41.0
2 49.1
2 49.2
2 54.8
2 45.0
3 51.7
3 60.1
3 52.6
3 58.6
3 59.8
3 52.6
3 53.8
4 67.5
4 57.7
4 58.2
4 60.6
4 57.3
4 58.3
4 54.8
5 57.1
5 69.6
5 62.7
;
proc glm data=tech1;
class tech;
model sec=tech/solution;
estimate "H0: m1+m2-m3-m4=0" tech 1 1 -1 -1 0;
contrast "Comb" tech 1 1 0 0 -2, tech 0 0 1 1 -2, tech 1 1 -1 -1 0;
run;
quit;
The SAS System 23:22 Tuesday, January 19, 2010 1

The GLM Procedure

Class Level Information

Class Levels Values

tech 5 12345

Number of Observations Read 28


Number of Observations Used 28
The SAS System 23:22 Tuesday, January 19, 2010 2

The GLM Procedure

Dependent Variable: sec

Sum of
Source DF Squares Mean Square F Value Pr > F

Model 4 1028.733071 257.183268 14.11 <.0001

Error 23 419.328000 18.231652

Corrected Total 27 1448.061071

R-Square Coeff Var Root MSE sec Mean

0.710421 7.926534 4.269854 53.86786

Source DF Type I SS Mean Square F Value Pr > F

tech 4 1028.733071 257.183268 14.11 <.0001

Source DF Type III SS Mean Square F Value Pr > F

tech 4 1028.733071 257.183268 14.11 <.0001

Standard
Parameter Estimate Error t Value Pr > |t|

H0: m1+m2-m3-m4=0 -20.9466667 3.44876537 -6.07 <.0001

Standard
Parameter Estimate Error t Value Pr > |t|

Intercept 63.13333333 B 2.46520129 25.61 <.0001


tech 1 -17.10000000 B 3.01924263 -5.66 <.0001
tech 2 -15.31333333 B 3.11826038 -4.91 <.0001
tech 3 -7.53333333 B 2.94647911 -2.56 0.0176
tech 4 -3.93333333 B 2.94647911 -1.33 0.1950
tech 5 0.00000000 B . . .

NOTE: The X'X matrix has been found to be singular, and a generalized inverse was used to solve the
normal equations. Terms whose estimates are followed by the letter 'B' are not uniquely
estimable.
The GLM Procedure

Dependent Variable: sec

Sum of
Source DF Squares Mean Square F Value Pr > F

Model 4 1028.733071 257.183268 14.11 <.0001

Error 23 419.328000 18.231652

Corrected Total 27 1448.061071

R-Square Coeff Var Root MSE sec Mean

0.710421 7.926534 4.269854 53.86786

Source DF Type I SS Mean Square F Value Pr > F

tech 4 1028.733071 257.183268 14.11 <.0001

Source DF Type III SS Mean Square F Value Pr > F

tech 4 1028.733071 257.183268 14.11 <.0001

Contrast DF Contrast SS Mean Square F Value Pr > F

Comb 2 957.7297199 478.8648599 26.27 <.0001

Standard
Parameter Estimate Error t Value Pr > |t|

H0: m1+m2-m3-m4=0 20.9466667 3.44876537 6.07 <.0001

Standard
Parameter Estimate Error t Value Pr > |t|

Intercept 63.13333333 B 2.46520129 25.61 <.0001


tech 1 -17.10000000 B 3.01924263 -5.66 <.0001
tech 2 -15.31333333 B 3.11826038 -4.91 <.0001
tech 3 -7.53333333 B 2.94647911 -2.56 0.0176
tech 4 -3.93333333 B 2.94647911 -1.33 0.1950
tech 5 0.00000000 B . . .

NOTE: The X'X matrix has been found to be singular, and a generalized inverse was used to solve the
normal equations. Terms whose estimates are followed by the letter 'B' are not uniquely

You might also like