rlogitnorm {QRMlib} | R Documentation |
Random number generation for distribution of random variable Q on unit interval such that the probit transform of Q has a normal distribution with parameters mu and sigma
rlogitnorm(n, mu, sigma)
n |
sample size |
mu |
scalar parameter |
sigma |
scalar parameter |
see pages 353-354 in QRM
random sample of size n
documentation by Scott Ulman for R-language distribution
rbeta
,
rclaytonmix
,
rprobitnorm
#set number, mean, and variance: num <- 1000; mu <- 2.0; sigma <- 1.25; #Simulate values from logistic norm mix simVals <- rlogitnorm(num,mu,sigma);