本文連結:https://www.cnblogs.com/snoopy1866/p/15674999.html
利用PROC FREQ過程中的binomial語句可以很方便地計算單組率置信區間,SAS提供了9種(不包括校正法)計算單組率置信區間的方法,現列舉如下:
首先準備示例資料:
data test;
input out $ weight;
cards;
陽性 95
陰性 5
;
run;
1. Wald 法
基於Wald法構建的單組率的置信區間應用非常廣泛,且Wald在結構上有著以點估計為中心對稱分佈的天然優勢,基於Wald法構建的單樣本率置信區間可表示為:
優點:以點估計為中心,對稱分佈
缺點:(1)Overshoot: 置信區間可能超過[0,1]範圍(2)Degeneracy: 區間寬度可能為0(p=0或1時)(3)覆蓋率差
程式碼:
proc freq data = test;
tables out /nopercent nocol norow nocum binomial(level = "陽性" cl = wald);
weight weight;
run;
2. Wald 法(連續性校正)
優點:(1)可避免區間寬度可能為0的情況(2)覆蓋率較Wald法有所改善
缺點:(1)結果偏保守(2)更容易發生置信區間超過[0,1]範圍的情況
程式碼:
proc freq data = test;
tables out /nopercent nocol norow nocum binomial(level = "陽性" cl = wald(correct));
weight weight;
run;
3. Agresti-Coull
Agresti-Coull法的主要思路是選擇一個大於0的常數作為pseudo-frequency,在計算樣本量的時候對點估計進行校正,目的是使點估計儘量向中央(0.5)靠攏,這個大於零0的常數被稱為估計因子\(\phi\)。
Agresti和Coull提出了\(\phi\)的兩種形式,\(\phi =\frac{1}{2}z_{\alpha/2}^2\)和\(\phi = 2\),前者稱為ADDZ2校正法,後者稱為ADD4校正法,SAS中僅提供ADDZ2校正法,當\(\alpha = 0.05\)時,\(z_{\alpha/2}\)接近2,此時ADDZ2校正法與ADD4校正法近似。
當\(\phi = 2\)時(ADD4校正法),其實際含義是樣本成功率和失敗例數分別加2,即總樣本量加4。
其中\(\tilde{p} = \frac{n_1 + \frac{1}{2}z_{\alpha/2}^2}{n + z_{\alpha/2}^2}\)
優點:(1)downward spikes現象略有改善(downward spikes:當率在極端情況下,置信區間覆蓋率急劇下滑)
缺點:(1)犧牲了置信區間寬度
程式碼:
proc freq data = test;
tables out /nopercent nocol norow nocum binomial(level = "陽性" cl = agresticoull);
weight weight;
run;
4. Wilson Score法
Wilson Score法作為Wald法的替代,應用十分廣泛,是目前學界公認的在非極端率情況下的最佳置信區間構建方法。
基於Wilson Score法構建的置信區間可表示為:
\(p\)可表示為:
優點:(1)被認為是moderate proportion(率不接近0或1)的最佳方法
缺點:(1)存在downward spikes現象
程式碼:
proc freq data = test;
tables out /nopercent nocol norow nocum binomial(level = "陽性" cl = wilson);
weight weight;
run;
5. Wilson Score法(連續性校正)
基於Wilson Score法連續性校正構建的置信區間可表示為:
程式碼:
proc freq data = test;
tables out /nopercent nocol norow nocum binomial(level = "陽性" cl = wilson(correct));
weight weight;
run;
6. Jeffreys法
Jeffreys法構建的置信區間表示如下:
程式碼:
proc freq data = test;
tables out /nopercent nocol norow nocum binomial(level = "陽性" cl = jeffreys);
weight weight;
run;
7. 似然比法
似然比法通過逆推似然比檢驗構造置信區間,零假設下似然比檢驗統計量可表示為:
使檢驗統計量\(L(p_0)\)落在接受域內的所有\(p_0\)組成的區間即為似然比法的置信區間:\(\{p_0: L(p_0) < \chi_{1,\alpha}^2\}\),PROC FREQ通過迭代計算尋找置信限。
程式碼:
proc freq data = test;
tables out /nopercent nocol norow nocum binomial(level = "陽性" cl = likelihoodratio);
weight weight;
run;
8. Logit法
基於Logit變換 \(Y = \ln(\frac{\hat{p}}{1 - \hat{p}})\),\(Y\) 的近似置信區間用以下公式計算:
\(p\) 的置信區間可表示為:
程式碼:
proc freq data = test;
tables out /nopercent nocol norow nocum binomial(level = "陽性" cl = likelihoodratio);
weight weight;
run;
9. Clopper-Pearson法
基於二項分佈構建的置信區間方法,使得精確置信限滿足以下方程:
PROC FREQ 使用 \(F\) 分佈計算Clopper-Pearson置信限,公式如下:
程式碼:
proc freq data = test;
tables out /nopercent nocol norow nocum binomial(level = "陽性" cl = likelihoodratio);
weight weight;
run;
10. Mid-P法
Mid-P 精確置信限滿足以下方程:
程式碼:
proc freq data = test;
tables out /nopercent nocol norow nocum binomial(level = "陽性" cl = midp);
weight weight;
run;
11. Blaker法
通過對雙側 Blaker 精確檢驗逆推來構建置信區間,使檢驗統計量\(B(p_0, n_1)\)落在接受域內的所有\(p_0\)組成的區間稱為Blaker置信區間:\(\{ p_0: B(p_0, n_1) > \alpha \}\)
其中:
程式碼:
proc freq data = test;
tables out /nopercent nocol norow nocum binomial(level = "陽性" cl = blaker);
weight weight;
run;
最後,將以上9種方法同時展示(wald 和 wilson 僅展示校正法):
proc freq data = test;
tables out /nopercent nocol norow
nocum binomial(level = "陽性"
cl = (wald(correct) agresticoull wilson(correct)
jeffreys likelihoodratio logit
clopperpearson midp blaker));
weight weight;
run;
參考文獻:徐瑩. 一種新的單樣本率的置信區間估計方法[D].南方醫科大學,2019.