當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


R語言 qtukey()用法及代碼示例


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)

輸出:

相關用法


注:本文由純淨天空篩選整理自nidhi_biet大神的英文原創作品 Compute the value of Quantile Function over Studentized Distribution in R Programming – qtukey() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。