tlambda | R Documentation |
Defines quantile function (ICDF), and quantile density function as well as probability function (CDF) for Tukey lambda distribution
qtlambda(p, lambda)
ftlambda(p, lambda)
dqtlambda(p, lambda, log = FALSE)
ptlambda(q, ..., lower = 0, upper = 1, tol = 1e-06, silent = TRUE, trace = 0)
rtlambda(n, lambda)
p |
vector of probabilities |
lambda |
parameter beta of Tukey lambda distribution (scale and shape). |
log |
logical; if TRUE, log density is returnes. Default is FALSE |
q |
vector of quantiles |
... |
used by method |
lower , upper |
the |
tol |
the |
silent |
the |
trace |
integer number passed to |
n |
numeric; number of samples to draw from Tukey Lambda distribution |
vector
qtlambda(0.1, -0.5)
p <- runif(1e4)
x <- qtlambda(p, -0.5)+qtlambda(p, 0.5)
hist(x,30)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.