Tukey
位於 stats
包(package)。 說明
學生化範圍的分布函數 pchisq
。 ,其中 是標準正態樣本的範圍,而 與 自由度呈卡方獨立分布,請參閱
用法
ptukey(q, nmeans, df, nranges = 1, lower.tail = TRUE, log.p = FALSE)
qtukey(p, nmeans, df, nranges = 1, lower.tail = TRUE, log.p = FALSE)
參數
q |
分位數向量。 |
p |
概率向量。 |
nmeans |
範圍的樣本大小(每組相同)。 |
df |
的自由度(見下文)。 |
nranges |
考慮最大範圍的組數。 |
log.p |
邏輯性;如果為 TRUE,則概率 p 以 log(p) 形式給出。 |
lower.tail |
邏輯性;如果為 TRUE(默認值),則概率為 ,否則為 。 |
細節
如果 nranges
大於 1,則 是 組 nmeans
觀測值中的最大值。
值
ptukey
給出分布函數,qtukey
給出其反函數,即分位數函數。
結果的長度是數字參數長度的最大值。其他數字參數將循環到該長度。僅使用邏輯參數的第一個元素。
注意
ptukey
的積分使用勒讓德 16 點公式。計算相對昂貴,特別是對於 qtukey
來說,它使用簡單的割線方法來查找 ptukey
的逆。 qtukey
將精確到小數點後第四位。
例子
if(interactive())
curve(ptukey(x, nm = 6, df = 5), from = -1, to = 8, n = 101)
(ptt <- ptukey(0:10, 2, df = 5))
(qtt <- qtukey(.95, 2, df = 2:11))
## The precision may be not much more than about 8 digits:
summary(abs(.95 - ptukey(qtt, 2, df = 2:11)))
來源
qtukey
部分改編自 Odeh 和 Evans (1974)。
參考
Copenhaver, Margaret Diponzio and Holland, Burt S. (1988). Computation of the distribution of the maximum studentized range statistic with application to multiple significance testing of simple effects. Journal of Statistical Computation and Simulation, 30, 1-15. doi:10.1080/00949658808811082.
Odeh, R. E. and Evans, J. O. (1974). Algorithm AS 70: Percentage Points of the Normal Distribution. Applied Statistics, 23, 96-97. doi:10.2307/2347061.
也可以看看
標準分布的Distributions,包括正態分布對應函數的pnorm
和qnorm
。
相關用法
- R TukeyHSD 計算 Tukey Honest 顯著差異
- R TDist 學生 t 分布
- R stlmethods STL 對象的方法
- R medpolish 矩陣的中值波蘭(穩健雙向分解)
- R naprint 調整缺失值
- R summary.nls 總結非線性最小二乘模型擬合
- R summary.manova 多元方差分析的匯總方法
- R formula 模型公式
- R nls.control 控製 nls 中的迭代
- R aggregate 計算數據子集的匯總統計
- R deriv 簡單表達式的符號和算法導數
- R kruskal.test Kruskal-Wallis 秩和檢驗
- R quade.test 四方測試
- R decompose 移動平均線的經典季節性分解
- R plot.stepfun 繪製階躍函數
- R alias 查找模型中的別名(依賴項)
- R qqnorm 分位數-分位數圖
- R eff.aovlist 多層方差分析的計算效率
- R pairwise.t.test 成對 t 檢驗
- R loglin 擬合對數線性模型
- R predict.smooth.spline 通過平滑樣條擬合進行預測
- R bartlett.test 方差齊性的 Bartlett 檢驗
- R influence.measures 回歸刪除診斷
- R loess.control 設置黃土參數
- R Normal 正態分布
注:本文由純淨天空篩選整理自R-devel大神的英文原創作品 The Studentized Range Distribution。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。