當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


R語言 dunif()用法及代碼示例


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()

輸出:

相關用法


注:本文由純淨天空篩選整理自utkarsh_kumar大神的英文原創作品 Compute Density of the Distribution Function in R Programming – dunif() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。