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


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


qnbinom()R语言中的函数用于计算负二项式分位数函数的值。它还创建负二项式分位数函数的密度图。

用法: qnbinom(vec, size, prob)

参数:
vec:x-values 表示二项式密度
size:试验次数
prob:可能性

范例1:


# R program to compute value of
# Negative Binomial Quantile Function
  
# Vector of x-values
x <- seq(0, 1, by = 0.1)
  
# Calling qnbinom() Function
y <- qnbinom(x, size = 100, prob = 0.5)
y

输出:

 [1]   0  82  88  92  96  99 103 107 112 118 Inf

范例2:


# R program to compute value of
# Negative Binomial Quantile Function
  
# Vector of x-values
x <- seq(0, 1, by = 0.01)
  
# Calling qnbinom() Function
y <- qnbinom(x, size = 100, prob = 0.8)
  
# Plot a graph
plot(y)

输出:

相关用法


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