R 語言中的 rnbinom() 函數用於計算負二項式分布的隨機密度。
用法: rnbinom(N, size, prob)
參數:
N: Sample Size
size: Number of trials
prob: Probability
範例1:
Python3
# R program to compute random
# Negative Binomial Density
# Setting seed for
# random number generation
set.seed(1000)
# Set sample size
N <- 20
# Calling rnbinom() Function
y <- rnbinom(N, size = 10, prob = 0.5)
y
輸出:
[1] 9 12 8 4 10 3 9 19 3 14 11 11 6 15 14 12 6 5 5 4
範例2:
Python3
# R program to compute random
# Negative Binomial Density
# Setting seed for
# random number generation
set.seed(1000)
# Set sample size
N <- 100
# Calling rnbinom() Function
y <- rnbinom(N, size = 50, prob = 0.5)
# Plot a graph
plot(y)
輸出:
相關用法
- R語言 rf()用法及代碼示例
- R語言 rchisq()用法及代碼示例
- R語言 rlnorm()用法及代碼示例
- R語言 rcauchy()用法及代碼示例
- R語言 rlogis()用法及代碼示例
- R語言 rpois()用法及代碼示例
- R語言 rweibull()用法及代碼示例
- R語言 rsignrank()用法及代碼示例
- R語言 rwilcox()用法及代碼示例
- R語言 dnbinom()用法及代碼示例
- R語言 pnbinom()用法及代碼示例
- R語言 qnbinom()用法及代碼示例
- R語言 density()用法及代碼示例
- R語言 dunif()用法及代碼示例
- R語言 dchisq()用法及代碼示例
- R語言 pchisq()用法及代碼示例
- R語言 dcauchy()用法及代碼示例
- R語言 pcauchy()用法及代碼示例
- R語言 plogis()用法及代碼示例
- R語言 dlogis()用法及代碼示例
- R語言 plnorm()用法及代碼示例
- R語言 qchisq()用法及代碼示例
- R語言 dlnorm()用法及代碼示例
- R語言 dpois()用法及代碼示例
注:本文由純淨天空篩選整理自nidhi_biet大神的英文原創作品 Compute Randomly Drawn Negative Binomial Density in R Programming – rnbinom() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。