Anda di halaman 1dari 4

Nama : Zulkifli Bauw

Nim : I1B118010

Keterangan :

Progran yang digunakan adalah software sas dikarenakan software spss tidak ada di dalam laptop
saya dan tidak ada laptop yang bisa dipinjam, tidak ada alternatif lain.

program

data rak;
input Faktor Ulangan FaktorKelompok$;
cards;
69 1 Bandota
67 2 Bandota
74 3 Bandota
59 4 Bandota
69 5 Bandota
66 1 Bandota
64 2 Bandota
71 3 Bandota
56 4 Bandota
66 5 Bandota
69 1 Bandota
70 2 Bandota
70 3 Bandota
71 4 Bandota
71 5 Bandota
76 1 Bandota
40 2 Bandota
37 3 Bandota
38 4 Bandota
34 5 Bandota
58 1 Kirinyuh
59 2 Kirinyuh
62 3 Kirinyuh
57 4 Kirinyuh
54 5 Kirinyuh
50 1 Kirinyuh
60 2 Kirinyuh
54 3 Kirinyuh
63 4 Kirinyuh
51 5 Kirinyuh
57 1 Kirinyuh
58 2 Kirinyuh
61 3 Kirinyuh
56 4 Kirinyuh
53 5 Kirinyuh
36 1 Kirinyuh
34 2 Kirinyuh
34 3 Kirinyuh
32 4 Kirinyuh
37 5 Kirinyuh
48 1 Ciplukan
49 2 Ciplukan
49 3 Ciplukan
48 4 Ciplukan
48 5 Ciplukan
62 1 Ciplukan
63 2 Ciplukan
66 3 Ciplukan
61 4 Ciplukan
58 5 Ciplukan
52 1 Ciplukan
52 2 Ciplukan
53 3 Ciplukan
53 4 Ciplukan
49 5 Ciplukan
53 1 Ciplukan
54 2 Ciplukan
54 3 Ciplukan
53 4 Ciplukan
53 5 Ciplukan

;
proc glm data=rak;
class Ulangan FaktorKelompok;
model Faktor=Ulangan FaktorKelompok;
means FaktorKelompok/t;
run;

Output
The SAS System 4
14:27 Wednesday, May 19, 2020

The GLM Procedure

Class Level Information

Class Levels Values

Ulangan 5 12345

FaktorKelompok 3 Bandota Ciplukan Kirinyuh

Number of observations 60

The SAS System 5


14:27 Wednesday, May 19, 2020

The GLM Procedure

Dependent Variable: Faktor

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

Model 6 1387.000000 231.166667 2.08 0.0711

Error 53 5889.983333 111.131761

Corrected Total 59 7276.983333

R-Square Coeff Var Root MSE Faktor Mean

0.190601 18.93189 10.54190 55.68333

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


Ulangan 4 178.566667 44.641667 0.40 0.8066
FaktorKelompok 2 1208.433333 604.216667 5.44 0.0071

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

Ulangan 4 178.566667 44.641667 0.40 0.8066


FaktorKelompok 2 1208.433333 604.216667 5.44 0.0071

The SAS System 6


14:27 Wednesday, May 19, 2020

The GLM Procedure

t Tests (LSD) for Faktor

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

Alpha 0.05
Error Degrees of Freedom 53
Error Mean Square 111.1318
Critical Value of t 2.00575
Least Significant Difference 6.6864

Means with the same letter are not significantly different.

Faktor
t Grouping Mean N Kelompok

A 61.850 20 Bandota

B 53.900 20 Ciplukan
B
B 51.300 20 Kirinyuh

Log(identifikasi kesalahan) apabila ada kesalahan maka laporan LOG ada tulisan Eror

NOTE: PROCEDURE GLM used (Total process time):


real time 27:18.20
cpu time 19.32 seconds

50 data rak;
51 input Faktor Ulangan FaktorKelompok$;
52 cards;

NOTE: The data set WORK.RAK has 60 observations and 3 variables.


NOTE: DATA statement used (Total process time):
real time 0.02 seconds
cpu time 0.01 seconds

113 ;
114 proc glm data=rak;
115 class Ulangan FaktorKelompok;
116 model Faktor=Ulangan FaktorKelompok;
117 means FaktorKelompok/t;
118 run;

NOTE: Means from the MEANS statement are not adjusted for other terms in the model.
For adjusted means, use the LSMEANS statement.
Interpretasi:

Alfa = 0.05

Nilai F table = 2.08

Nilai F hitung untuk ulangan = 0.40

Nilai F hitung untuk Kelompok = 5.44

Kesimpulan bahwa karena Nilai F hitung untuk Kelompok = 5.44 > Nilai F table = 2.08 maka
H0 ditolak.

Anda mungkin juga menyukai