qtukey()
R 語言中的函數用於計算學生化範圍分位數函數在一係列數值上的值。
用法: qtukey(x, nmeans, df)
參數:
x:數字向量
nmeans:平均數
df:自由度
範例1:
# R Program to compute the value of
# Quantile Function Studentized Range
# Creating a sequence of Numeric values
x <- seq(0, 1, by = 0.1)
# Calling qtukey() Function
y <- qtukey(x, nmeans = 7, df = 5)
y
輸出:
[1] 0.000000 1.574255 1.933986 2.237255 2.531898 2.842588 3.193850 3.623645 [9] 4.214094 5.238196 Inf
範例2:
# R Program to compute the value of
# Quantile Function Studentized Range
# Creating a sequence of Numeric values
x <- seq(0, 1, by = 0.02)
# Calling qtukey() Function
y <- qtukey(x, nmeans = 7, df = 5)
# Plot a graph
plot(y)
輸出:
相關用法
- R語言 ptukey()用法及代碼示例
- R語言 qf()用法及代碼示例
- R語言 qweibull()用法及代碼示例
- R語言 qsignrank()用法及代碼示例
- R語言 qwilcox()用法及代碼示例
- R語言 qunif()用法及代碼示例
- R語言 dsignrank()用法及代碼示例
- R語言 psignrank()用法及代碼示例
- R語言 dwilcox()用法及代碼示例
- R語言 pwilcox()用法及代碼示例
- R語言 qcauchy()用法及代碼示例
- R語言 qlogis()用法及代碼示例
- R語言 qlnorm()用法及代碼示例
- R語言 qpois()用法及代碼示例
- R語言 qnbinom()用法及代碼示例
- R語言 qgeom()用法及代碼示例
- R語言 qchisq()用法及代碼示例
- R語言 ecdf()用法及代碼示例
- R語言 pf()用法及代碼示例
- R語言 punif()用法及代碼示例
- R語言 dunif()用法及代碼示例
- R語言 quantile()用法及代碼示例
注:本文由純淨天空篩選整理自nidhi_biet大神的英文原創作品 Compute the value of Quantile Function over Studentized Distribution in R Programming – qtukey() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。