rlnorm()
R語言中的函數用於計算一係列輸入之間的隨機對數正態密度。
用法: rlnorm(N)
參數:
N:樣本量
範例1:
# R program to generate
# random log normal density points
# Setting seed for
# random number generation
set.seed(1000)
# Set sample size
N <- 20
# Calling rlnorm() Function
y <- rlnorm(N)
y
輸出:
[1] 0.6403257 0.2994354 1.0419837 1.8953214 0.4554113 0.6801178 0.6213456 [8] 2.0539211 0.9816646 0.2533159 0.3744010 0.5743659 1.1290552 0.8861471 [15] 0.2628844 1.1853730 1.1677499 1.0252453 0.1291752 1.2375754
範例2:
# R program to generate
# random log normal density points
# Setting seed for
# random number generation
set.seed(1000)
# Set sample size
N <- 500
# Calling rlnorm() Function
y <- rlnorm(N)
# Plot a graph
plot(y)
輸出:
相關用法
- R語言 rf()用法及代碼示例
- R語言 rchisq()用法及代碼示例
- R語言 rcauchy()用法及代碼示例
- R語言 rlogis()用法及代碼示例
- R語言 rnbinom()用法及代碼示例
- R語言 rpois()用法及代碼示例
- R語言 rweibull()用法及代碼示例
- R語言 rsignrank()用法及代碼示例
- R語言 rwilcox()用法及代碼示例
- R語言 plnorm()用法及代碼示例
- R語言 dlnorm()用法及代碼示例
- R語言 qlnorm()用法及代碼示例
- R語言 density()用法及代碼示例
- R語言 dunif()用法及代碼示例
- R語言 dchisq()用法及代碼示例
- R語言 pchisq()用法及代碼示例
- R語言 dcauchy()用法及代碼示例
- R語言 pcauchy()用法及代碼示例
- R語言 plogis()用法及代碼示例
- R語言 dlogis()用法及代碼示例
- R語言 qchisq()用法及代碼示例
- R語言 dnbinom()用法及代碼示例
- R語言 pnbinom()用法及代碼示例
- R語言 dpois()用法及代碼示例
注:本文由純淨天空篩選整理自nidhi_biet大神的英文原創作品 Compute Randomly Drawn Log Normal Density in R Programming – rlnorm() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。