当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。