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)
输出:
相关用法
- R语言 qcauchy()用法及代码示例
- R语言 qlogis()用法及代码示例
- R语言 qlnorm()用法及代码示例
- R语言 qpois()用法及代码示例
- R语言 qf()用法及代码示例
- R语言 qweibull()用法及代码示例
- R语言 qtukey()用法及代码示例
- R语言 qsignrank()用法及代码示例
- R语言 qwilcox()用法及代码示例
- R语言 qgeom()用法及代码示例
- R语言 qunif()用法及代码示例
- R语言 qchisq()用法及代码示例
- R语言 dnbinom()用法及代码示例
- R语言 pnbinom()用法及代码示例
- R语言 rnbinom()用法及代码示例
- R语言 quantile()用法及代码示例
- R语言 lgamma()用法及代码示例
- R语言 trigamma()用法及代码示例
- R语言 ecdf()用法及代码示例
- R语言 pf()用法及代码示例
注:本文由纯净天空筛选整理自nidhi_biet大神的英文原创作品 Compute the Value of Negative Binomial Quantile Function in R Programming – qnbinom() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。