Density, distribution function, quantile function and random generation for the Gompertz distribution.
dgompertz(x, a =1, b =1, log =FALSE)pgompertz(q, a =1, b =1, lower.tail =TRUE, log.p =FALSE)qgompertz(p, a =1, b =1, lower.tail =TRUE, log.p =FALSE)rgompertz(n, a =1, b =1)
Arguments
x, q: vector of quantiles.
a, b: positive valued scale and location parameters.
log, log.p: logical; if TRUE, probabilities p are given as log(p).
lower.tail: logical; if TRUE (default), probabilities are P[X≤x]
otherwise, P[X>x].
p: vector of probabilities.
n: number of observations. If length(n) > 1, the length is taken to be the number required.
x <- rgompertz(1e5,5,2)hist(x,100, freq =FALSE)curve(dgompertz(x,5,2),0,1, col ="red", add =TRUE)hist(pgompertz(x,5,2))plot(ecdf(x))curve(pgompertz(x,5,2),0,1, col ="red", lwd =2, add =TRUE)