adjcoef {sdprisk} | R Documentation |
Adjustment Coefficient
Description
Returns the adjustment coefficient of a risk process with Gaussian diffusion.
Usage
adjcoef(process)
Arguments
process |
An object of the class |
Details
The moment-generating function of the individual claim amounts is required
to be contained within the "claiminfo"
element of process
(see
claiminfo
). The only exception to this is the case of
hypo-exponentially distributed claim amounts.
Value
The adjustment coefficient of the risk process represented by
process
. If the adjustment coefficient does not exist or cannot be
computed for any reason, NULL
is returned instead.
See Also
riskproc
and claiminfo
for more details on how
to provide the information necessary to compute the adjustment coefficient.
Examples
## Setting up a risk process with hypo-exponentially distributed claims
myprocess <- riskproc(
claims = claiminfo(hypoexp = list(rates = c(1, 10))),
premium = 2,
freq = 1,
variance = 0.4
)
## Return the adjustment coefficient
adjcoef(myprocess)
[Package sdprisk version 1.1-6 Index]