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


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


dwilcox()R 语言中的函数用于计算一系列数值上 Wilcoxonrank 和统计分布的概率密度函数 (PDF) 的值。

用法: dwilcox(x, m, n)

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

范例1:


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

输出:

 [1] 0.0003330003 0.0006660007 0.0009990010 0.0016650017 0.0023310023
 [6] 0.0033300033 0.0043290043 0.0059940060 0.0076590077 0.0099900100

范例2:


# R Program to compute the value of
# PDF over Wilcoxonrank Sum Distribution
  
# Creating a sequence of x-values
x <- seq(1, 50, by = 1)
  
# Calling dwilcox() Function
y <- dwilcox(x, m = 30, n = 10)
  
# Plot a graph
plot(y)

输出:

相关用法


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