dnbinom()
R語言中的函數用於計算負二項式密度的值。它還創建負二項式密度圖。
用法: dnbinom(vec, size, prob)
參數:
vec:x-values 表示二項式密度
size:試驗次數
prob:可能性
範例1:
# R program to compute
# Negative Binomial Density
# Vector of x-values
x <- seq(0, 10, by = 1)
# Calling dnbinom() Function
y <- dnbinom(x, size = 10, prob = 0.5)
y
輸出:
[1] 0.0009765625 0.0048828125 0.0134277344 0.0268554688 0.0436401367 [6] 0.0610961914 0.0763702393 0.0872802734 0.0927352905 0.0927352905 [11] 0.0880985260
範例2:
# R program to compute
# Negative Binomial Density
# Vector of x-values
x <- seq(0, 100, by = 1)
# Calling dnbinom() Function
y <- dnbinom(x, size = 10, prob = 0.5)
# Plot a graph
plot(y)
輸出:
相關用法
- R語言 pnbinom()用法及代碼示例
- R語言 rnbinom()用法及代碼示例
- R語言 qnbinom()用法及代碼示例
- R語言 density()用法及代碼示例
- R語言 dunif()用法及代碼示例
- R語言 rf()用法及代碼示例
- R語言 dchisq()用法及代碼示例
- R語言 pchisq()用法及代碼示例
- R語言 dcauchy()用法及代碼示例
- R語言 pcauchy()用法及代碼示例
- R語言 rchisq()用法及代碼示例
- R語言 plogis()用法及代碼示例
- R語言 dlogis()用法及代碼示例
- R語言 rlnorm()用法及代碼示例
- R語言 plnorm()用法及代碼示例
- R語言 rcauchy()用法及代碼示例
- R語言 qchisq()用法及代碼示例
- R語言 dlnorm()用法及代碼示例
- R語言 rlogis()用法及代碼示例
- R語言 dpois()用法及代碼示例
- R語言 ppois()用法及代碼示例
- R語言 rpois()用法及代碼示例
- R語言 df()用法及代碼示例
- R語言 dweibull()用法及代碼示例
注:本文由純淨天空篩選整理自nidhi_biet大神的英文原創作品 Compute the Negative Binomial Density in R Programming – dnbinom() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。