lnorm_sd | R Documentation |
Standard deviation of lognormal distribution x, given the mean (mu) and standard deviation (sigma) of log(x). Bolker 2008 page 137
lnorm_sd(mu, sigma)
mu |
mean of log(x) |
sigma |
standard deviation of log(x) |
Nikolai Klibansky
Bolker, B. M. 2008. Ecological Models and Data in R. Princeton University Press, Princeton, NJ. Page 137
set.seed(1234)
x <- rnorm(1000,mean=100,sd=3)
m <- mean(log(x))
s <- sd(log(x))
lnorm_sd(mu=m,sigma=s)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.