powered by
Density function, distribution function, quantile function, and random generation of variates for a specified cdf-quantile distribution.
dq(x, mu, sigma, fd, sd)rq(n, mu, sigma, fd, sd)qq(p, mu, sigma, fd, sd)pq(q, mu, sigma, fd, sd)
rq(n, mu, sigma, fd, sd)
qq(p, mu, sigma, fd, sd)
pq(q, mu, sigma, fd, sd)
dq gives the density, rq generates random variates, qq gives the quantile function, and pq gives the cumulative density of specified distribution.
dq
rq
qq
pq
vector of quantiles.
vector of means.
vector of standard deviations.
A string that specifies the parent distribution.
A string that specifies the sub-family distribution.
Number of random samples.
vector of probabilities.
x <- rq(5, mu = 0.5, sigma = 1, 't2','t2'); x dq(x, mu = 0.5, sigma = 1, 't2','t2') qtil <- pq(x, mu = 0.5, sigma = 1, 't2','t2');qtil qq(qtil , mu = 0.5, sigma = 1, 't2','t2')
Run the code above in your browser using DataLab