qpois()
R语言中的函数用于计算泊松分位数函数的值。它为泊松分布创建了分位数密度图。
用法: qpois(vec, lambda)
参数:
vec:整数值序列
lambda:每个时间间隔的平均事件数
范例1:
# R program to compute
# Poisson Quantile Density
# Sequence of x-values
x <- seq(0, 1, by = .01)
# Calling qpois() Function
y <- qpois(x, lambda = 5)
y
输出:
[1] 0 1 1 1 1 2 2 2 2 2 2 2 2 3 3 3 3 3 [19] 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 [37] 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 [55] 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 [73] 6 6 6 6 6 7 7 7 7 7 7 7 7 7 7 8 8 8 [91] 8 8 8 8 9 9 9 10 10 11 Inf
范例2:
# R program to compute
# Poisson Quantile Density
# Sequence of x-values
x <- seq(0, 1, by = 0.01)
# Calling qpois() Function
y <- qpois(x, lambda = 15)
# Plot a graph
plot(y)
输出:
相关用法
- R语言 dpois()用法及代码示例
- R语言 qcauchy()用法及代码示例
- R语言 qlogis()用法及代码示例
- R语言 qlnorm()用法及代码示例
- R语言 qnbinom()用法及代码示例
- R语言 qf()用法及代码示例
- R语言 qweibull()用法及代码示例
- R语言 qtukey()用法及代码示例
- R语言 qsignrank()用法及代码示例
- R语言 qwilcox()用法及代码示例
- R语言 qgeom()用法及代码示例
- R语言 qunif()用法及代码示例
- R语言 qchisq()用法及代码示例
- R语言 ppois()用法及代码示例
- R语言 rpois()用法及代码示例
- R语言 quantile()用法及代码示例
- R语言 lgamma()用法及代码示例
- R语言 trigamma()用法及代码示例
- R语言 ecdf()用法及代码示例
注:本文由纯净天空筛选整理自nidhi_biet大神的英文原创作品 Compute the Value of Poisson Quantile Function in R Programming – qpois() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。