dnorm.trunc
, pnorm.trunc
, qnorm.trunc
and
rnorm.trunc
are functions for the Truncated Normal Distribution.
dgumbel.trunc
, pgumbel.trunc
, qgumbel.trunc
and
rgumbel.trunc
are functions for the Truncated Gumbel Distribution.
dnorm.trunc(x, mean = 0, sd = 1, min = -1e6, max = 1e6)
pnorm.trunc(q, mean = 0, sd = 1, min = -1e6, max = 1e6)
qnorm.trunc(p, mean = 0, sd = 1, min = -1e6, max = 1e6)
rnorm.trunc(n, mean = 0, sd = 1, min = -1e6, max = 1e6)
dgumbel.trunc(x, loc = 0, scale = 1, min = -1e6, max = 1e6)
pgumbel.trunc(q, loc = 0, scale = 1, min = -1e6, max = 1e6)
qgumbel.trunc(p, loc = 0, scale = 1, min = -1e6, max = 1e6)
rgumbel.trunc(n, loc = 0, scale = 1, min = -1e6, max = 1e6)
dnorm.trunc
and dgumbel.trunc
give the density, pnorm
and pgumbel.trunc
give the distribution function, qnorm
and qgumbel.trunc
give the quantile function, rnorm
and rgumbel.trunc
generate random deviates.
vector of quantiles
vector of probabilities
number of observations
means and standard deviation parameters
location and scale parameters
vector of minimal bound values
vector of maximal bound values
Gilles Pujol and Bertrand Iooss
See dnorm
for details on the Normal distribution.
The Gumbel distribution comes from the evd package.
See dgumbel
for details on the Gumbel distribution.