You are on page 1of 18

option1s=78 ps=60;

data ayu;
input A $ r AKAR1;
label A = 'perlakuan'
R = 'ulangan'
AKAR1 = 'PANJANG AKAR (cm)';
cards;
A1 1 6.0
A1 2 7.5
A1 3 8.5
A1 4 8.0
A1 5 6.3
A1 6 9.0
A1 7 7.0
A1 8 7.0
A1 9 8.0
A1 10 7.3
A2 1 8.8
A2 2 5.5
A2 3 8.5
A2 4 5.5
A2 5 6.7
A2 6 5.5
A2 7 3.8
A2 8 6.2
A2 9 7.5
A2 10 6.8
A3 1 4.8
A3 2 7.0
A3 3 8.0
A3 4 5.8
A3 5 8.5
A3 6 6.5
A3 7 7.5
A3 8 6.7
A3 9 8.2
A3 10 7.0
;
Proc print;
run;
TITLE 'Hasil Analisis Ragam RAL';
Proc glm data=ayu;
class A;
Model AKAR1= A;
run;
MEAN A;
MEAN A/DUNCAN;
RUN;
Hasil Analisis Ragam RAL
OBS
1
2
3
4
5

26
07:33 Monday, May 5, 1997
A

A1
A1
A1
A1
A1

R
1
2
3
4
5

AKAR1
6.0
7.5
8.5
8.0
6.3

6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30

A1
A1
A1
A1
A1
A2
A2
A2
A2
A2
A2
A2
A2
A2
A2
A3
A3
A3
A3
A3
A3
A3
A3
A3
A3

6
7
8
9
10
1
2
3
4
5
6
7
8
9
10
1
2
3
4
5
6
7
8
9
10

9.0
7.0
7.0
8.0
7.3
8.8
5.5
8.5
5.5
6.7
5.5
3.8
6.2
7.5
6.8
4.8
7.0
8.0
5.8
8.5
6.5
7.5
6.7
8.2
7.0

Hasil Analisis Ragam RAL


27
07:33 Monday, May 5, 1997
General Linear Models Procedure
Class Level Information
Class
A

Levels
3

Values

A1 A2 A3

Number of observations in data set = 30

Hasil Analisis Ragam RAL


28
07:33 Monday, May 5, 1997
General Linear Models Procedure
Dependent Variable: AKAR1 PANJANG AKAR (cm)
Source

DF

Model

Error

Sum of Squares
4.80800000
27
29

0.106541

Source
A

C.V.

0.2185

1.49333333

Root MSE

17.50745
Type I SS

4.80800000
DF

1.61

Pr > F

45.12800000

R-Square

DF

2.40400000

40.32000000

Corrected Total

Source

Mean Square F Value

Type III SS
4.80800000

AKAR1 Mean

1.22202019

6.98000000

Mean Square F Value


2.40400000

1.61

Mean Square F Value


2.40400000

1.61

Pr > F

0.2185
Pr > F
0.2185

Hasil Analisis Ragam RAL


29
07:33 Monday, May 5, 1997
General Linear Models Procedure
Level of
A
N
A1
A2
A3

10
10
10

------------AKAR1-----------Mean
SD
7.46000000
6.48000000
7.00000000

0.94068533
1.52008772
1.13333333

Hasil Analisis Ragam RAL


30
07:33 Monday, May 5, 1997
General Linear Models Procedure
Duncan's Multiple Range Test for variable: AKAR1
NOTE: This test controls the type I comparisonwise error rate, not the
experimentwise error rate
Alpha= 0.05 df= 27 MSE= 1.493333
Number of Means
2
3
Critical Range 1.121 1.178
Means with the same letter are not significantly different.
Duncan Grouping
A
A
A
A
A

Mean
7.4600

10 A1

7.0000

10 A3

6.4800

10 A2

option1s=78 ps=60;
data ayu;
input A $ r AKAR3;
label A = 'perlakuan'
R = 'ulangan'
AKAR1 = 'PANJANG AKAR (cm)';
cards;
A1 1 4.8
A1 2 8.0
A1 3 7.5
A1 4 8.8
A1 5 7.3
A1 6 8.5

N A

A1 7 9.0
A1 8 5.5
A1 9 8.0
A1 10 7.5
A2 1 6.1
A2 2 5.8
A2 3 9.0
A2 4 7.3
A2 5 7.0
A2 6 5.5
A2 7 3.7
A2 8 6.5
A2 9 8.0
A2 10 7.2
A3 1 5.5
A3 2 7.5
A3 3 7.5
A3 4 6.0
A3 5 9.0
A3 6 6.8
A3 7 7.5
A3 8 6.5
A3 9 9.2
A3 10 7.5
;
Proc print;
run;
TITLE 'Hasil Analisis Ragam RAL';
Proc glm data=ayu;
class A;
Model AKAR3= A;
run;
MEAN A;
MEAN A/DUNCAN;
RUN;
Hasil Analisis Ragam RAL
6
07:33 Monday, May 5, 1997
OBS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19

A1
A1
A1
A1
A1
A1
A1
A1
A1
A1
A2
A2
A2
A2
A2
A2
A2
A2
A2

1
2
3
4
5
6
7
8
9
10
1
2
3
4
5
6
7
8
9

AKAR1
4.8
8.0
7.5
8.8
7.3
8.5
9.0
5.5
8.0
7.5
6.1
5.8
9.0
7.3
7.0
5.5
3.7
6.5
8.0

20
21
22
23
24
25
26
27
28
29
30

A2
A3
A3
A3
A3
A3
A3
A3
A3
A3
A3

10
1
2
3
4
5
6
7
8
9
10

7.2
5.5
7.5
7.5
6.0
9.0
6.8
7.5
6.5
9.2
7.5

Hasil Analisis Ragam RAL


7
07:33 Monday, May 5, 1997
General Linear Models Procedure
Class Level Information
Class
A

Levels
3

Values

A1 A2 A3

Number of observations in data set = 30

Hasil Analisis Ragam RAL


8
07:33 Monday, May 5, 1997
General Linear Models Procedure
Dependent Variable: AKAR1 PANJANG AKAR (cm)
Source

DF

Sum of Squares

Model

4.28866667

Error

27
29

0.081245

Source
A

C.V.

0.3186

1.79622222

Root MSE

18.78830
Type I SS

4.28866667
DF

1.19

Pr > F

52.78666667

R-Square

DF

2.14433333

48.49800000

Corrected Total

Source

Mean Square F Value

Type III SS
4.28866667

AKAR1 Mean

1.34023215

Mean Square F Value


2.14433333

1.19

Mean Square F Value


2.14433333

1.19

7.13333333
Pr > F
0.3186
Pr > F
0.3186

Hasil Analisis Ragam RAL


9
07:33 Monday, May 5, 1997
General Linear Models Procedure
Level of
A
N
A1
A2
A3

10
10
10

------------AKAR3-----------Mean
SD
7.49000000
6.61000000
7.30000000

1.36499898
1.46245608
1.17756812

Hasil Analisis Ragam RAL


10
07:33 Monday, May 5, 1997
General Linear Models Procedure
Duncan's Multiple Range Test for variable: AKAR3
NOTE: This test controls the type I comparisonwise error rate, not the
experimentwise error rate
Alpha= 0.05 df= 27 MSE= 1.796222
Number of Means
2
3
Critical Range 1.230 1.292
Means with the same letter are not significantly different.
Duncan Grouping
A
A
A
A
A

Mean
7.4900

10 A1

7.3000

10 A3

6.6100

10 A2

option1s=78 ps=60;
data ayu;
input A $ r AKAR2;
label A = 'perlakuan'
R = 'ulangan'
AKAR1 = 'PANJANG AKAR (cm)';
cards;
A1 1 6.1
A1 2 7.7
A1 3 8.0
A1 4 8.6
A1 5 6.5

N A

A1 6 9.8
A1 7 8.3
A1 8 7.5
A1 9 8.2
A1 10 7.5
A2 1 6.0
A2 2 4.9
A2 3 8.2
A2 4 6.0
A2 5 7.3
A2 6 6.8
A2 7 4.5
A2 8 6.5
A2 9 8.2
A2 10 7.2
A3 1 5.4
A3 2 7.7
A3 3 8.5
A3 4 6.0
A3 5 8.6
A3 6 7.0
A3 7 7.0
A3 8 6.8
A3 9 8.3
A3 10 7.3
;
Proc print;
run;
TITLE 'Hasil Analisis Ragam RAL';
Proc glm data=ayu;
class A;
Model AKAR2= A;
run;
MEAN A;
MEAN A/DUNCAN;
RUN;
Hasil Analisis Ragam RAL
OBS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

21
07:33 Monday, May 5, 1997
A

A1
A1
A1
A1
A1
A1
A1
A1
A1
A1
A2
A2
A2
A2
A2
A2

1
2
3
4
5
6
7
8
9
10
1
2
3
4
5
6

AKAR2
6.1
7.7
8.0
8.6
6.5
9.8
8.3
7.5
8.2
7.5
6.0
4.9
8.2
6.0
7.3
6.8

17
18
19
20
21
22
23
24
25
26
27
28
29
30

A2
A2
A2
A2
A3
A3
A3
A3
A3
A3
A3
A3
A3
A3

7
8
9
10
1
2
3
4
5
6
7
8
9
10

4.5
6.5
8.2
7.2
5.4
7.7
8.5
6.0
8.6
7.0
7.0
6.8
8.3
7.3

Hasil Analisis Ragam RAL


22
07:33 Monday, May 5, 1997
General Linear Models Procedure
Class Level Information
Class
A

Levels
3

Values

A1 A2 A3

Number of observations in data set = 30

Hasil Analisis Ragam RAL


23
07:33 Monday, May 5, 1997
General Linear Models Procedure
Dependent Variable: AKAR2
Source

DF

Model

Error

Sum of Squares
7.97066667
27

Corrected Total

DF
2

Source
A

C.V.

0.0577

1.25496296

Root MSE

15.53029
Type I SS

7.97066667
DF

3.18

Pr > F

41.85466667

R-Square

Source

3.98533333

33.88400000

29

0.190437

Mean Square F Value

Type III SS
7.97066667

AKAR2 Mean

1.12025129

7.21333333

Mean Square F Value


3.98533333

3.18

Mean Square F Value


3.98533333

3.18

Pr > F

0.0577
Pr > F
0.0577

Hasil Analisis Ragam RAL


24
07:33 Monday, May 5, 1997
General Linear Models Procedure
Level of
A
N
A1
A2
A3

10
10
10

------------AKAR2-----------Mean
SD
7.82000000
6.56000000
7.26000000

1.04647557
1.24828772
1.05430335

Hasil Analisis Ragam RAL


25
07:33 Monday, May 5, 1997
General Linear Models Procedure
Duncan's Multiple Range Test for variable: AKAR2
NOTE: This test controls the type I comparisonwise error rate, not the
experimentwise error rate
Alpha= 0.05 df= 27 MSE= 1.254963
Number of Means
2
3
Critical Range 1.028 1.080
Means with the same letter are not significantly different.
Duncan Grouping

B
B
B

A
A
A

Mean
7.8200
7.2600

6.5600

10 A1
10 A3
10 A2

N A

You might also like