get.gompertz.par {rriskDistributions} | R Documentation |
Fitting parameters of a Gompertz distribution from two or more quantiles
Description
get.gompertz.par
returns the parameters of a Gompertz distribution
where the p
th percentiles match with the quantiles q
.
Usage
get.gompertz.par(p = c(0.025, 0.5, 0.975), q, show.output = TRUE,
plot = TRUE, tol = 0.001, fit.weights = rep(1, length(p)), scaleX = c(0.1, 0.9), ...)
Arguments
p |
numeric, single value or vector of probabilities. |
q |
numeric, single value or vector of quantiles corresponding to p. |
show.output |
logical, if |
plot |
logical, if |
tol |
numeric, single positive value giving the absolute convergence tolerance for reaching zero (default value is |
fit.weights |
numerical vector of the same length as a probabilities vector
|
scaleX |
numerical vector of the length 2 containing values (from the open interval (0, 1))
for scaling quantile-axis (relevant only if |
... |
further arguments passed to the functions |
Details
The number of probabilities, the number of quantiles and the number of weightings
must be identical and should be at least two. Using the default p
, the
three corresponding quantiles are the 2.5th percentile, the median and the 97.5th
percentile, respectively. get.gompertz.par
uses the R function optim
with the method L-BFGS-B
. If this method fails the optimization method
BFGS
will be invoked.
If show.output = TRUE
the output of the function optim
will be shown.
The item convergence
equal to 0 means the successful completion of the
optimization procedure, otherwise it indicates a convergence error. The item
value
displays the achieved minimal value of the functions that were minimized.
The estimated distribution parameters returned by the function optim
are
accepted if the achieved value of the minimized function (output component
value
of optim
) is smaller than the argument tol
.
The items of the probability vector p
should lie between 0 and 1.
The items of the weighting vector fit.weights
should be positive values.
The function which will be minimized is defined as a sum of squared differences
between the given probabilities and the theoretical probabilities of the specified
distribution evaluated at the given quantile points (least squares estimation).
Value
Returns fitted parameters of a Gompertz distribution or missing
values (NA
's) if the distribution cannot fit the specified quantiles.
Note
Comply with a parametrization of this distribution. The definition of this
distribution in the literature is not unique.
It should be noted that there might be deviations between the estimated
and the theoretical distribution parameters in certain circumstances. This is
because the estimation of the parameters is based on a numerical optimization
method and depends strongly on the initial values. In addition, one must always
keep in mind that a distribution for different combinations of parameters may
look very similar. Therefore, the optimization method cannot always find the
"right" distribution, but a "similar" one.
If the function terminates with the error massage "convergence error occurred or
specified tolerance not achieved", one may try to set the convergence tolerance
to a higher value. It is yet to be noted, that good till very good fits of parameters
could only be obtained for tolerance values that are smaller than 0.001.
Author(s)
Matthias Greiner matthias.greiner@bfr.bund.de (BfR),
Katharina Schueller schueller@stat-up.de (STAT-UP Statistical Consulting),
Natalia Belgorodski belgorodski@stat-up.de (STAT-UP Statistical Consulting)
See Also
See pgompertz
from the package eha for distribution
implementation details.
Examples
q <- eha::qgompertz(p = c(0.025, 0.5, 0.975), shape = 2, scale = 5)
old.par <- graphics::par(mfrow = c(2, 3))
get.gompertz.par(q = q)
get.gompertz.par(q = q, fit.weights = c(100, 1, 100))
get.gompertz.par(q = q, fit.weights = c(10, 1, 10))
get.gompertz.par(q = q, fit.weights = c(1, 100, 1))
get.gompertz.par(q = q, fit.weights = c(1, 10, 1))
graphics::par(old.par)
q <- eha::qgompertz(p = c(0.025, 0.5, 0.975), shape = 0.2, scale = 0.5)
old.par <- graphics::par(mfrow = c(2, 3))
get.gompertz.par(q = q)
get.gompertz.par(q = q, fit.weights = c(100, 1, 100))
get.gompertz.par(q = q, fit.weights = c(10, 1, 10))
get.gompertz.par(q = q, fit.weights = c(1, 100, 1))
get.gompertz.par(q = q, fit.weights = c(1, 10, 1))
graphics::par(old.par)
q <- eha::qgompertz(p = c(0.025, 0.5, 0.975), shape = 1, scale = 1)
old.par <- graphics::par(mfrow = c(2, 3))
get.gompertz.par(q = q)
get.gompertz.par(q = q, fit.weights = c(100, 1, 100))
get.gompertz.par(q = q, fit.weights = c(10, 1, 10))
get.gompertz.par(q = q, fit.weights = c(1, 100, 1))
get.gompertz.par(q = q, fit.weights = c(1, 10, 1))
graphics::par(old.par)
## example with only two quantiles
q <- eha::qgompertz(p = c(0.025, 0.975), shape = 2, scale = 5)
old.par <- graphics::par(mfrow = c(2, 3))
get.gompertz.par(p = c(0.025, 0.975), q = q)
get.gompertz.par(p = c(0.025, 0.975), q = q, fit.weights = c(100, 1), scaleX = c(0.0001, 0.9999))
get.gompertz.par(p = c(0.025, 0.975), q = q, fit.weights = c(1, 100))
get.gompertz.par(p = c(0.025, 0.975), q = q, fit.weights = c(10, 1))
get.gompertz.par(p = c(0.025, 0.975), q = q, fit.weights = c(1, 10))
graphics::par(old.par)