獨立樣本t檢定(Two sample t test for independent samples)
有時候我們想估計兩獨立母體平均數的差異,
假設檢定如下,
H0:μ1=μ2 H1:μ1≠μ2
舉個例子,我們對一地區的警察與消防隊員吃完一個漢堡的所需的時間是否有差別感興趣。
此時兩樣本的變異數有分為相同(pooled)與不同(Satterthwaite)的版本。
那有什麼判斷準則可以協助我們選擇該用哪個版本呢?
我們可以使用F檢定(testing of the equality of two variance)
我們可以使用F檢定(testing of the equality of two variance)
假設檢定為,
H0:σ1=σ2 H1:σ1≠σ2
當拒絕虛無假設時使用,變異數不同的版本(Satterthwaite)
當無法拒絕虛無假設時使用,變異數相同的版本(pooled)
SAS Codes:
/*資料輸入*/
data a1;
input type $ count @@;
datalines;
fireman
5 fireman 4.5 fireman 6 fireman 3.9
policeman
7 policeman 6.8 policeman 5.9 policeman 7.5
policeman 7.2
;
run;
/*印出資料*/
proc print data=a1;run;
/*獨立樣本t檢定*/
proc ttest data=a1;
class type;
var count;
run;
成對樣本t檢定
有時候我們想估計成對樣本母體平均的差是否為零,
假設檢定如下,
H0:μD=0 H1: μD≠0
舉個例子,我們對一地區的學生,上大學前與上大學後吃一個漢堡的速度是否有差別。
/*資料輸入*/
data pressure;
input Studentbefore Studentafter @@;
datalines;
4.2 3
4.1 3 5.6
3.2 5.7 5.1
4.5 3.1
;
run;
/*成對樣本t檢定*/
proc ttest;
paired Studentbefore*Studentafter;
run;
/*p-value=0.01,拒絕H0*/
資料來源:
Example 95.1 Using Summary Statistics to Compare Group Means
Example 95.1 Using Summary Statistics to Compare Group Means
Example 95.3 Paired
Comparisons
沒有留言:
張貼留言