dlnorm()
R語言中的函數用於計算概率密度函數的對數正態值。它還創建了對數正態密度圖。
用法: dlnorm(vec)
參數:
vec:x-values 為正常密度
範例1:
# R program to compute
# log normal probability density
# Creating x-values for density
x <- seq(1, 10, by = 1)
# Calling dlnorm() function
y <- dlnorm(x)
y
輸出:
[1] 0.398942280 0.156874019 0.072728256 0.038153457 0.021850715 0.013354538 [7] 0.008581626 0.005739296 0.003965747 0.002815902
範例2:
# R program to compute
# log normal probability density
# Creating x-values for density
x <- seq(1, 10, by = 0.1)
# Calling dlnorm() function
y <- dlnorm(x)
# Plot a graph
plot(y)
輸出:
相關用法
- R語言 plnorm()用法及代碼示例
- R語言 rlnorm()用法及代碼示例
- R語言 qlnorm()用法及代碼示例
- R語言 density()用法及代碼示例
- R語言 dunif()用法及代碼示例
- R語言 rf()用法及代碼示例
- R語言 dchisq()用法及代碼示例
- R語言 pchisq()用法及代碼示例
- R語言 dcauchy()用法及代碼示例
- R語言 pcauchy()用法及代碼示例
- R語言 rchisq()用法及代碼示例
- R語言 plogis()用法及代碼示例
- R語言 dlogis()用法及代碼示例
- R語言 rcauchy()用法及代碼示例
- R語言 qchisq()用法及代碼示例
- R語言 rlogis()用法及代碼示例
- R語言 dnbinom()用法及代碼示例
- R語言 pnbinom()用法及代碼示例
- R語言 dpois()用法及代碼示例
- R語言 rnbinom()用法及代碼示例
- R語言 ppois()用法及代碼示例
- R語言 rpois()用法及代碼示例
- R語言 df()用法及代碼示例
- R語言 dweibull()用法及代碼示例
注:本文由純淨天空篩選整理自nidhi_biet大神的英文原創作品 Compute Log Normal Probability Density in R Programming – dlnorm() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。