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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。