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


R语言 qwilcox()用法及代码示例


qwilcox()R 语言中的函数用于计算数值序列上 Wilcoxonrank 和统计分布的分位数函数 (QF) 的值。

用法: qwilcox(x, m, n)

参数:
x:数字向量
m:更大的样本量
n:较小的样本量

范例1:


# R Program to compute the value of
# QF over Wilcoxonrank Sum Distribution
  
# Creating a sequence of x-values
x <- seq(0, 1, by = 0.1)
  
# Calling qwilcox() Function
y <- qwilcox(x, m = 10, n = 5)
y

输出:

 [1]  0 14 18 21 23 25 27 29 32 36 50

范例2:


# R Program to compute the value of
# QF over Wilcoxonrank Sum Distribution
  
# Creating a sequence of x-values
x <- seq(0, 1, by = 0.02)
  
# Calling qwilcox() Function
y <- qwilcox(x, m = 20, n = 5)
  
# Plot a graph
plot(y)

输出:

相关用法


注:本文由纯净天空筛选整理自nidhi_biet大神的英文原创作品 Compute the value of Quantile Function over Wilcoxon Rank Sum Distribution in R Programming – qwilcox() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。