R語言中的dunif()函數用於提供分布函數的密度。
用法:
dunif(x, min = 0, max = 1, log = FALSE)
參數:
x:表示向量
min, max:表示分布的下限和上限
log:表示概率的邏輯值
範例1:
# Create vector of random deviation
u <- runif(20)
dunif(u) == u
print(dunif(u))
輸出:
[1] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE [13] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE [1] 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
範例2:
# Output to be present as PNG file
png(file = "dunifGFG.png")
# Plot density
curve(dunif(x, min = 2, max = 6), 0, 8, ylim = c(0, 0.5),
ylab = "f(x)", main = "Uniform Density f(x)")
# Saving the file
dev.off()
輸出:
相關用法
- R語言 density()用法及代碼示例
- 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語言 dnbinom()用法及代碼示例
- R語言 pnbinom()用法及代碼示例
- R語言 dpois()用法及代碼示例
- R語言 rnbinom()用法及代碼示例
- R語言 ppois()用法及代碼示例
- R語言 rpois()用法及代碼示例
- R語言 df()用法及代碼示例
- R語言 dweibull()用法及代碼示例
- R語言 pweibull()用法及代碼示例
注:本文由純淨天空篩選整理自utkarsh_kumar大神的英文原創作品 Compute Density of the Distribution Function in R Programming – dunif() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。