You are on page 1of 30

data Mutu_Fisik;

input Perlakuan$ Susut_Bobot Bobot_Jari Jumlah_Jari Umur_Simpan


Kelunakan_Kulit Kelunakan_Daging Edible_Part;
cards;
M1 16.6620 396.1111 9 16 0.0515 0.3273 63.4631
M1 22.4090 133.8750 8 13 0.2401 0.3849 62.6636
M1 38.1623 186.3750 8 28 0.1047 0.2829 70.6950
M1 23.0896 232.5385 13 20 0.0581 0.2670 64.1056
M2 32.6382 359.6250 8 27 0.0729 0.2829 72.4944
M2 14.7518 320.1111 9 18 0.1146 0.3120 69.1603
M2 29.8422 232.3333 6 22 0.0833 0.2807 74.7594
M2 25.3177 186.0000 11 17 0.0614 0.2434 68.5198
M2 26.9656 203.5000 8 18 0.0713 0.2588 70.3463
M3 16.8969 174.6667 6 9 0.0614 0.3803 55.5746
M3 18.8811 268.1250 8 17 0.0669 0.3755 67.5854
M3 19.1758 216.1818 11 13 0.0768 0.2599 70.4472
M3 19.7108 373.4000 10 23 0.1168 0.2774 76.8310
M3 23.3209 504.3750 8 22 0.0855 0.2626 69.8511
M4 19.4767 147.4286 7 12 0.0927 0.3640 63.5626
M4 11.8283 333.1000 10 10 0.1069 0.4518 80.6080
M4 17.8895 242.6000 10 16 0.1064 0.3399 72.5010
M4 20.8269 215.0000 9 24 0.0850 0.3043 68.5727
M4 16.4476 255.9091 11 11 0.0724 0.3235 60.0675
M5 15.1633 321.5000 8 11 0.0713 0.4359 80.8179
M5 10.2663 287.8889 9 10 0.0954 0.3224 66.2585
M5 14.1456 265.1000 10 16 0.0757 0.3109 72.1391
M5 11.0855 336.7778 9 10 0.0757 0.3410 65.0360
M5 15.7042 327.3000 10 16 0.0724 0.2840 66.4885
;
proc glm data = Mutu_Fisik;
title 'Susut Bobot';
class Perlakuan;
model Susut_Bobot = Perlakuan;
means Perlakuan / tukey;
proc glm data = Mutu_Fisik;
title 'Bobot Jari';
class Perlakuan;
model Bobot_Jari = Perlakuan;
means Perlakuan / tukey;
proc glm data = Mutu_Fisik;
title 'Jumlah Jari';
class Perlakuan;
model Jumlah_Jari = Perlakuan;
means Perlakuan / tukey;
proc glm data = Mutu_Fisik;
title 'Umur Simpan';
class Perlakuan;
model Umur_Simpan = Perlakuan;
means Perlakuan / tukey;
proc glm data = Mutu_Fisik;
title 'Kelunakan Kulit';
class Perlakuan;
model Kelunakan_Kulit = Perlakuan;
means Perlakuan / tukey;
proc glm data = Mutu_Fisik;
title 'Kelunakan Daging';
class Perlakuan;
model Kelunakan_Daging = Perlakuan;
means Perlakuan / tukey;
proc glm data = Mutu_Fisik;
title 'Edible Part';
class Perlakuan;
model Edible_Part = Perlakuan;
means Perlakuan / tukey;
run;
Susut Bobot 11:34 Friday, September 3, 2020 1

The GLM Procedure

Class Level Information

Class Levels Values

Perlakuan 5 M1 M2 M3 M4 M5

Number of observations 24

Susut Bobot 11:34 Friday, September 3, 2020 2

The GLM Procedure

Dependent Variable: Susut_Bobot

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

Model 4 541.163210 135.290802 4.81 0.0075

Error 19 533.928495 28.101500

Corrected Total 23 1075.091704

R-Square Coeff Var Root MSE Susut_Bobot Mean

0.503365 26.46915 5.301085 20.02741

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

Perlakuan 4 541.1632096 135.2908024 4.81 0.0075

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

Perlakuan 4 541.1632096 135.2908024 4.81 0.0075


Susut Bobot 11:34 Friday, September 3, 2020 3

The GLM Procedure

Tukey's Studentized Range (HSD) Test for Susut_Bobot

NOTE: This test controls the Type I experimentwise error rate.

Alpha 0.05
Error Degrees of Freedom 19
Error Mean Square 28.1015
Critical Value of Studentized Range 4.25283

Comparisons significant at the 0.05 level are indicated by ***.

Difference
Perlakuan Between Simultaneous 95%
Comparison Means Confidence Limits

M2 - M1 0.822 -9.871 11.516


M2 - M3 6.306 -3.776 16.388
M2 - M4 8.609 -1.473 18.692
M2 - M5 12.630 2.548 22.712 ***
M1 - M2 -0.822 -11.516 9.871
M1 - M3 5.484 -5.210 16.177
M1 - M4 7.787 -2.907 18.481
M1 - M5 11.808 1.114 22.502 ***
M3 - M2 -6.306 -16.388 3.776
M3 - M1 -5.484 -16.177 5.210
M3 - M4 2.303 -7.779 12.386
M3 - M5 6.324 -3.758 16.406
M4 - M2 -8.609 -18.692 1.473
M4 - M1 -7.787 -18.481 2.907
M4 - M3 -2.303 -12.386 7.779
M4 - M5 4.021 -6.061 14.103
M5 - M2 -12.630 -22.712 -2.548 ***
M5 - M1 -11.808 -22.502 -1.114 ***
M5 - M3 -6.324 -16.406 3.758
M5 - M4 -4.021 -14.103 6.061
Susut Bobot 11:44 Friday, September 3, 2020 31

The GLM Procedure

t Tests (LSD) for Susut_Bobot

NOTE: This test controls the Type I comparisonwise error rate, not the experimentwise
error rate.

Alpha 0.05
Error Degrees of Freedom 19
Error Mean Square 28.1015
Critical Value of t 2.09302
Least Significant Difference 7.1906
Harmonic Mean of Cell Sizes 4.761905

NOTE: Cell sizes are not equal.

Means with the same letter are not significantly different.

t Grouping Mean N Perlakuan

A 25.903 5 M2
A
A 25.081 4 M1
A
B A 19.597 5 M3
B
B 17.294 5 M4
B
B 13.273 5 M5
Tukey's Studentized Range (HSD) Test for Susut_Bobot

NOTE: This test controls the Type I experimentwise error rate, but it generally has a
higher Type II error rate than REGWQ.

Alpha 0.05
Error Degrees of Freedom 19
Error Mean Square 28.1015
Critical Value of Studentized Range 4.25283
Minimum Significant Difference 10.331
Harmonic Mean of Cell Sizes 4.761905

NOTE: Cell sizes are not equal.

Means with the same letter are not significantly different.

Tukey Grouping Mean N Perlakuan

A 25.903 5 M2
A
A 25.081 4 M1
A
B A 19.597 5 M3
B A
B A 17.294 5 M4
B
B 13.273 5 M5
Bobot Jari 11:34 Friday, September 3, 2020 4

The GLM Procedure

Class Level Information

Class Levels Values

Perlakuan 5 M1 M2 M3 M4 M5

Number of observations 24

Bobot Jari 11:34 Friday, September 3, 2020 5

The GLM Procedure

Dependent Variable: Bobot_Jari

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

Model 4 23651.1873 5912.7968 0.73 0.5825

Error 19 153884.1233 8099.1644

Corrected Total 23 177535.3106

R-Square Coeff Var Root MSE Bobot_Jari Mean

0.133220 33.12803 89.99536 271.6592

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

Perlakuan 4 23651.18733 5912.79683 0.73 0.5825

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

Perlakuan 4 23651.18733 5912.79683 0.73 0.5825


Bobot Jari 11:34 Friday, September 3, 2020 6

The GLM Procedure

Tukey's Studentized Range (HSD) Test for Bobot_Jari

NOTE: This test controls the Type I experimentwise error rate.

Alpha 0.05
Error Degrees of Freedom 19
Error Mean Square 8099.164
Critical Value of Studentized Range 4.25283

Comparisons significant at the 0.05 level are indicated by ***.

Difference Simultaneous
Perlakuan Between 95% Confidence
Comparison Means Limits

M5 - M3 0.36 -170.80 171.53


M5 - M2 47.40 -123.76 218.56
M5 - M4 68.91 -102.26 240.07
M5 - M1 70.49 -111.06 252.04
M3 - M5 -0.36 -171.53 170.80
M3 - M2 47.04 -124.13 218.20
M3 - M4 68.54 -102.62 239.71
M3 - M1 70.12 -111.42 251.67
M2 - M5 -47.40 -218.56 123.76
M2 - M3 -47.04 -218.20 124.13
M2 - M4 21.51 -149.66 192.67
M2 - M1 23.09 -158.46 204.64
M4 - M5 -68.91 -240.07 102.26
M4 - M3 -68.54 -239.71 102.62
M4 - M2 -21.51 -192.67 149.66
M4 - M1 1.58 -179.96 183.13
M1 - M5 -70.49 -252.04 111.06
M1 - M3 -70.12 -251.67 111.42
M1 - M2 -23.09 -204.64 158.46
M1 - M4 -1.58 -183.13 179.96
The GLM Procedure

t Tests (LSD) for Bobot_Jari

NOTE: This test controls the Type I comparisonwise error rate, not the experimentwise
error rate.

Alpha 0.05
Error Degrees of Freedom 19
Error Mean Square 8099.164
Critical Value of t 2.09302
Least Significant Difference 122.07
Harmonic Mean of Cell Sizes 4.761905

NOTE: Cell sizes are not equal.

Means with the same letter are not significantly different.

t Grouping Mean N Perlakuan

A 307.71 5 M5
A
A 307.35 5 M3
A
A 260.31 5 M2
A
A 238.81 5 M4
A
A 237.22 4 M1
Tukey's Studentized Range (HSD) Test for Susut_Bobot

NOTE: This test controls the Type I experimentwise error rate, but it generally has a
higher Type II error rate than REGWQ.

Alpha 0.05
Error Degrees of Freedom 19
Error Mean Square 28.1015
Critical Value of Studentized Range 4.25283
Minimum Significant Difference 10.331
Harmonic Mean of Cell Sizes 4.761905

NOTE: Cell sizes are not equal.

Means with the same letter are not significantly different.

Tukey Grouping Mean N Perlakuan

A 25.903 5 M2
A
A 25.081 4 M1
A
B A 19.597 5 M3
B A
B A 17.294 5 M4
B
B 13.273 5 M5
Jumlah Jari 11:34 Friday, September 3, 2020 7

The GLM Procedure

Class Level Information

Class Levels Values

Perlakuan 5 M1 M2 M3 M4 M5

Number of observations 24

Jumlah Jari 11:34 Friday, September 3, 2020 8

The GLM Procedure

Dependent Variable: Jumlah_Jari

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

Model 4 4.60000000 1.15000000 0.38 0.8196

Error 19 57.40000000 3.02105263

Corrected Total 23 62.00000000

R-Square Coeff Var Root MSE Jumlah_Jari Mean

0.074194 19.31242 1.738118 9.000000

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

Perlakuan 4 4.60000000 1.15000000 0.38 0.8196

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

Perlakuan 4 4.60000000 1.15000000 0.38 0.8196


Jumlah Jari 11:34 Friday, September 3, 2020 9

The GLM Procedure

Tukey's Studentized Range (HSD) Test for Jumlah_Jari

NOTE: This test controls the Type I experimentwise error rate.

Alpha 0.05
Error Degrees of Freedom 19
Error Mean Square 3.021053
Critical Value of Studentized Range 4.25283

Comparisons significant at the 0.05 level are indicated by ***.

Difference Simultaneous
Perlakuan Between 95% Confidence
Comparison Means Limits

M1 - M4 0.100 -3.406 3.606


M1 - M5 0.300 -3.206 3.806
M1 - M3 0.900 -2.606 4.406
M1 - M2 1.100 -2.406 4.606
M4 - M1 -0.100 -3.606 3.406
M4 - M5 0.200 -3.106 3.506
M4 - M3 0.800 -2.506 4.106
M4 - M2 1.000 -2.306 4.306
M5 - M1 -0.300 -3.806 3.206
M5 - M4 -0.200 -3.506 3.106
M5 - M3 0.600 -2.706 3.906
M5 - M2 0.800 -2.506 4.106
M3 - M1 -0.900 -4.406 2.606
M3 - M4 -0.800 -4.106 2.506
M3 - M5 -0.600 -3.906 2.706
M3 - M2 0.200 -3.106 3.506
M2 - M1 -1.100 -4.606 2.406
M2 - M4 -1.000 -4.306 2.306
M2 - M5 -0.800 -4.106 2.506
M2 - M3 -0.200 -3.506 3.106
The GLM Procedure

t Tests (LSD) for Bobot_Jari

NOTE: This test controls the Type I comparisonwise error rate, not the experimentwise
error rate.

Alpha 0.05
Error Degrees of Freedom 19
Error Mean Square 8099.164
Critical Value of t 2.09302
Least Significant Difference 122.07
Harmonic Mean of Cell Sizes 4.761905

NOTE: Cell sizes are not equal.

Means with the same letter are not significantly different.

t Grouping Mean N Perlakuan

A 307.71 5 M5
A
A 307.35 5 M3
A
A 260.31 5 M2
A
A 238.81 5 M4
A
A 237.22 4 M1
Tukey's Studentized Range (HSD) Test for Jumlah_Jari

NOTE: This test controls the Type I experimentwise error rate, but it generally has a
higher Type II error rate than REGWQ.

Alpha 0.05
Error Degrees of Freedom 19
Error Mean Square 3.021053
Critical Value of Studentized Range 4.25283
Minimum Significant Difference 3.3874
Harmonic Mean of Cell Sizes 4.761905

NOTE: Cell sizes are not equal.

Means with the same letter are not significantly different.

Tukey Grouping Mean N Perlakuan

A 9.500 4 M1
A
A 9.400 5 M4
A
A 9.200 5 M5
A
A 8.600 5 M3
A
A 8.400 5 M2
Umur Simpan 11:34 Friday, September 3, 2020 10

The GLM Procedure

Class Level Information

Class Levels Values

Perlakuan 5 M1 M2 M3 M4 M5

Number of observations 24

Umur Simpan 11:34 Friday, September 3, 2020 11

The GLM Procedure

Dependent Variable: Umur_Simpan

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

Model 4 200.4750000 50.1187500 1.88 0.1559

Error 19 507.1500000 26.6921053

Corrected Total 23 707.6250000

R-Square Coeff Var Root MSE Umur_Simpan Mean

0.283307 31.07633 5.166440 16.62500

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

Perlakuan 4 200.4750000 50.1187500 1.88 0.1559

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

Perlakuan 4 200.4750000 50.1187500 1.88 0.1559


Umur Simpan 11:34 Friday, September 3, 2020 12

The GLM Procedure

Tukey's Studentized Range (HSD) Test for Umur_Simpan

NOTE: This test controls the Type I experimentwise error rate.

Alpha 0.05
Error Degrees of Freedom 19
Error Mean Square 26.69211
Critical Value of Studentized Range 4.25283

Comparisons significant at the 0.05 level are indicated by ***.

Difference Simultaneous
Perlakuan Between 95% Confidence
Comparison Means Limits

M2 - M1 1.150 -9.272 11.572


M2 - M3 3.600 -6.226 13.426
M2 - M4 5.800 -4.026 15.626
M2 - M5 7.800 -2.026 17.626
M1 - M2 -1.150 -11.572 9.272
M1 - M3 2.450 -7.972 12.872
M1 - M4 4.650 -5.772 15.072
M1 - M5 6.650 -3.772 17.072
M3 - M2 -3.600 -13.426 6.226
M3 - M1 -2.450 -12.872 7.972
M3 - M4 2.200 -7.626 12.026
M3 - M5 4.200 -5.626 14.026
M4 - M2 -5.800 -15.626 4.026
M4 - M1 -4.650 -15.072 5.772
M4 - M3 -2.200 -12.026 7.626
M4 - M5 2.000 -7.826 11.826
M5 - M2 -7.800 -17.626 2.026
M5 - M1 -6.650 -17.072 3.772
M5 - M3 -4.200 -14.026 5.626
M5 - M4 -2.000 -11.826 7.826
t Tests (LSD) for Umur_Simpan

NOTE: This test controls the Type I comparisonwise error rate, not the experimentwise
error rate.

Alpha 0.05
Error Degrees of Freedom 19
Error Mean Square 26.69211
Critical Value of t 2.09302
Least Significant Difference 7.0079
Harmonic Mean of Cell Sizes 4.761905

NOTE: Cell sizes are not equal.

Means with the same letter are not significantly different.

t Grouping Mean N Perlakuan

A 20.400 5 M2
A
B A 19.250 4 M1
B A
B A 16.800 5 M3
B A
B A 14.600 5 M4
B
B 12.600 5 M5
Tukey's Studentized Range (HSD) Test for Umur_Simpan

NOTE: This test controls the Type I experimentwise error rate, but it generally has a
higher Type II error rate than REGWQ.

Alpha 0.05
Error Degrees of Freedom 19
Error Mean Square 26.69211
Critical Value of Studentized Range 4.25283
Minimum Significant Difference 10.069
Harmonic Mean of Cell Sizes 4.761905

NOTE: Cell sizes are not equal.

Means with the same letter are not significantly different.

Tukey Grouping Mean N Perlakuan

A 20.400 5 M2
A
A 19.250 4 M1
A
A 16.800 5 M3
A
A 14.600 5 M4
A
A 12.600 5 M5
Kelunakan Kulit 13
11:34 Friday, September 3, 2020

The GLM Procedure

Class Level Information

Class Levels Values

Perlakuan 5 M1 M2 M3 M4 M5

Number of observations 24

Kelunakan Kulit 14
11:34 Friday, September 3, 2020

The GLM Procedure

Dependent Variable: Kelunakan_Kulit

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

Model 4 0.00369784 0.00092446 0.63 0.6466

Error 19 0.02784738 0.00146565

Corrected Total 23 0.03154522

R-Square Coeff Var Root MSE Kelunakan_Kulit Mean

0.117224 43.35654 0.038284 0.088300

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

Perlakuan 4 0.00369784 0.00092446 0.63 0.6466

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

Perlakuan 4 0.00369784 0.00092446 0.63 0.6466


Kelunakan Kulit 15
11:34 Friday, September 3, 2020

The GLM Procedure

Tukey's Studentized Range (HSD) Test for Kelunakan_Kulit

NOTE: This test controls the Type I experimentwise error rate.

Alpha 0.05
Error Degrees of Freedom 19
Error Mean Square 0.001466
Critical Value of Studentized Range 4.25283

Comparisons significant at the 0.05 level are indicated by ***.

Difference
Perlakuan Between Simultaneous 95%
Comparison Means Confidence Limits

M1 - M4 0.02092 -0.05631 0.09815


M1 - M3 0.03212 -0.04511 0.10935
M1 - M2 0.03290 -0.04433 0.11013
M1 - M5 0.03550 -0.04173 0.11273
M4 - M1 -0.02092 -0.09815 0.05631
M4 - M3 0.01120 -0.06161 0.08401
M4 - M2 0.01198 -0.06083 0.08479
M4 - M5 0.01458 -0.05823 0.08739
M3 - M1 -0.03212 -0.10935 0.04511
M3 - M4 -0.01120 -0.08401 0.06161
M3 - M2 0.00078 -0.07203 0.07359
M3 - M5 0.00338 -0.06943 0.07619
M2 - M1 -0.03290 -0.11013 0.04433
M2 - M4 -0.01198 -0.08479 0.06083
M2 - M3 -0.00078 -0.07359 0.07203
M2 - M5 0.00260 -0.07021 0.07541
M5 - M1 -0.03550 -0.11273 0.04173
M5 - M4 -0.01458 -0.08739 0.05823
M5 - M3 -0.00338 -0.07619 0.06943
M5 - M2 -0.00260 -0.07541 0.07021
Kelunakan Kulit 51
11:44 Friday, September 3, 2020

The GLM Procedure

t Tests (LSD) for Kelunakan_Kulit

NOTE: This test controls the Type I comparisonwise error rate, not the experimentwise
error rate.

Alpha 0.05
Error Degrees of Freedom 19
Error Mean Square 0.001466
Critical Value of t 2.09302
Least Significant Difference 0.0519
Harmonic Mean of Cell Sizes 4.761905

NOTE: Cell sizes are not equal.

Means with the same letter are not significantly different.

t Grouping Mean N Perlakuan

A 0.11360 4 M1
A
A 0.09268 5 M4
A
A 0.08148 5 M3
A
A 0.08070 5 M2
A
A 0.07810 5 M5
Tukey's Studentized Range (HSD) Test for Kelunakan_Kulit

NOTE: This test controls the Type I experimentwise error rate, but it generally has a
higher Type II error rate than REGWQ.

Alpha 0.05
Error Degrees of Freedom 19
Error Mean Square 0.001466
Critical Value of Studentized Range 4.25283
Minimum Significant Difference 0.0746
Harmonic Mean of Cell Sizes 4.761905

NOTE: Cell sizes are not equal.

Means with the same letter are not significantly different.

Tukey Grouping Mean N Perlakuan

A 0.11360 4 M1
A
A 0.09268 5 M4
A
A 0.08148 5 M3
A
A 0.08070 5 M2
A
A 0.07810 5 M5
Kelunakan Daging 16
11:34 Friday, September 3, 2020

The GLM Procedure

Class Level Information

Class Levels Values

Perlakuan 5 M1 M2 M3 M4 M5

Number of observations 24

Kelunakan Daging 17
11:34 Friday, September 3, 2020

The GLM Procedure

Dependent Variable: Kelunakan_Daging

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

Model 4 0.01885448 0.00471362 1.69 0.1928

Error 19 0.05285050 0.00278161

Corrected Total 23 0.07170498

R-Square Coeff Var Root MSE Kelunakan_Daging Mean

0.262945 16.49593 0.052741 0.319721

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

Perlakuan 4 0.01885448 0.00471362 1.69 0.1928

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

Perlakuan 4 0.01885448 0.00471362 1.69 0.1928


Kelunakan Daging 18
11:34 Friday, September 3, 2020

The GLM Procedure

Tukey's Studentized Range (HSD) Test for Kelunakan_Daging

NOTE: This test controls the Type I experimentwise error rate.

Alpha 0.05
Error Degrees of Freedom 19
Error Mean Square 0.002782
Critical Value of Studentized Range 4.25283

Comparisons significant at the 0.05 level are indicated by ***.

Difference
Perlakuan Between Simultaneous 95%
Comparison Means Confidence Limits

M4 - M5 0.01786 -0.08245 0.11817


M4 - M1 0.04118 -0.06522 0.14757
M4 - M3 0.04556 -0.05475 0.14587
M4 - M2 0.08114 -0.01917 0.18145
M5 - M4 -0.01786 -0.11817 0.08245
M5 - M1 0.02332 -0.08308 0.12971
M5 - M3 0.02770 -0.07261 0.12801
M5 - M2 0.06328 -0.03703 0.16359
M1 - M4 -0.04118 -0.14757 0.06522
M1 - M5 -0.02332 -0.12971 0.08308
M1 - M3 0.00438 -0.10201 0.11078
M1 - M2 0.03996 -0.06643 0.14636
M3 - M4 -0.04556 -0.14587 0.05475
M3 - M5 -0.02770 -0.12801 0.07261
M3 - M1 -0.00438 -0.11078 0.10201
M3 - M2 0.03558 -0.06473 0.13589
M2 - M4 -0.08114 -0.18145 0.01917
M2 - M5 -0.06328 -0.16359 0.03703
M2 - M1 -0.03996 -0.14636 0.06643
M2 - M3 -0.03558 -0.13589 0.06473
Kelunakan Daging 56
11:44 Friday, September 3, 2020

The GLM Procedure

t Tests (LSD) for Kelunakan_Daging

NOTE: This test controls the Type I comparisonwise error rate, not the experimentwise
error rate.

Alpha 0.05
Error Degrees of Freedom 19
Error Mean Square 0.002782
Critical Value of t 2.09302
Least Significant Difference 0.0715
Harmonic Mean of Cell Sizes 4.761905

NOTE: Cell sizes are not equal.

Means with the same letter are not significantly different.

t Grouping Mean N Perlakuan

A 0.35670 5 M4
A
B A 0.33884 5 M5
B A
B A 0.31553 4 M1
B A
B A 0.31114 5 M3
B
B 0.27556 5 M2
Tukey's Studentized Range (HSD) Test for Kelunakan_Daging

NOTE: This test controls the Type I experimentwise error rate, but it generally has a
higher Type II error rate than REGWQ.

Alpha 0.05
Error Degrees of Freedom 19
Error Mean Square 0.002782
Critical Value of Studentized Range 4.25283
Minimum Significant Difference 0.1028
Harmonic Mean of Cell Sizes 4.761905

NOTE: Cell sizes are not equal.

Means with the same letter are not significantly different.

Tukey Grouping Mean N Perlakuan

A 0.35670 5 M4
A
A 0.33884 5 M5
A
A 0.31553 4 M1
A
A 0.31114 5 M3
A
A 0.27556 5 M2
Edible Part 20:34 Sunday, September 19, 2020 40

The GLM Procedure

Class Level Information

Class Levels Values

Perlakuan 5 M1 M2 M3 M4 M5

Number of observations 24

Edible Part 20:34 Sunday, September 19, 2020 41

The GLM Procedure

Dependent Variable: Edible_Part

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

Model 4 88.4838364 22.1209591 0.57 0.6880

Error 19 738.0849214 38.8465748

Corrected Total 23 826.5687578

R-Square Coeff Var Root MSE Edible_Part Mean

0.107050 9.051767 6.232702 68.85619

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

Perlakuan 4 88.48383639 22.12095910 0.57 0.6880

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

Perlakuan 4 88.48383639 22.12095910 0.57 0.6880


Edible Part 20:34 Sunday, September 19, 2020 42

The GLM Procedure

Tukey's Studentized Range (HSD) Test for Edible_Part

NOTE: This test controls the Type I experimentwise error rate.

Alpha 0.05
Error Degrees of Freedom 19
Error Mean Square 38.84657
Critical Value of Studentized Range 4.25283

Comparisons significant at the 0.05 level are indicated by ***.

Difference Simultaneous
Perlakuan Between 95% Confidence
Comparison Means Limits

M2 - M5 0.908 -10.946 12.762


M2 - M4 1.994 -9.860 13.848
M2 - M3 2.998 -8.856 14.852
M2 - M1 5.824 -6.749 18.397
M5 - M2 -0.908 -12.762 10.946
M5 - M4 1.086 -10.768 12.940
M5 - M3 2.090 -9.764 13.944
M5 - M1 4.916 -7.657 17.489
M4 - M2 -1.994 -13.848 9.860
M4 - M5 -1.086 -12.940 10.768
M4 - M3 1.004 -10.850 12.859
M4 - M1 3.831 -8.743 16.404
M3 - M2 -2.998 -14.852 8.856
M3 - M5 -2.090 -13.944 9.764
M3 - M4 -1.004 -12.859 10.850
M3 - M1 2.826 -9.747 15.399
M1 - M2 -5.824 -18.397 6.749
M1 - M5 -4.916 -17.489 7.657
M1 - M4 -3.831 -16.404 8.743
M1 - M3 -2.826 -15.399 9.747
Edible Part 20:34 Sunday, September 19, 2020 63

The GLM Procedure

t Tests (LSD) for Edible_Part

NOTE: This test controls the Type I comparisonwise error rate, not the experimentwise
error rate.

Alpha 0.05
Error Degrees of Freedom 19
Error Mean Square 38.84657
Critical Value of t 2.09302
Least Significant Difference 8.4543
Harmonic Mean of Cell Sizes 4.761905

NOTE: Cell sizes are not equal.

Means with the same letter are not significantly different.

t Grouping Mean N Perlakuan

A 71.056 5 M2
A
A 70.148 5 M5
A
A 69.062 5 M4
A
A 68.058 5 M3
A
A 65.232 4 M1
Edible Part 20:34 Sunday, September 19, 2020 65

The GLM Procedure

Tukey's Studentized Range (HSD) Test for Edible_Part

NOTE: This test controls the Type I experimentwise error rate, but it generally has a
higher Type II error rate than REGWQ.

Alpha 0.05
Error Degrees of Freedom 19
Error Mean Square 38.84657
Critical Value of Studentized Range 4.25283
Minimum Significant Difference 12.147
Harmonic Mean of Cell Sizes 4.761905

NOTE: Cell sizes are not equal.

Means with the same letter are not significantly different.

Tukey Grouping Mean N Perlakuan

A 71.056 5 M2
A
A 70.148 5 M5
A
A 69.062 5 M4
A
A 68.058 5 M3
A
A 65.232 4 M1

You might also like