summary.profileLadder {ProfileLadder} | R Documentation |
Summary Method for Objects of the S3 Class Method profileLadder
Description
The function provides an overall summary of the output from the functions
parallelReserve() and mcReserve() (summary of the object of the class
profileLadder
)
Usage
## S3 method for class 'profileLadder'
summary(object, plotOption = FALSE, ...)
Arguments
object |
an object of the class |
plotOption |
logical to indicate whether a graphical output should be
also provided (set by DEFAULT to |
... |
not used |
Value
Summary of the completed functional profiles and the estimated reserve
(provided by the function parallelReserve()
or mcReserve()
).
Summary of the incremental residuals (standard or backfitted) is also provided
if the residuals are available. The output is a list with the following items:
origins |
a matrix with the row-specific summary of the completed
functional profiles (except the first fully developed profile—i.e., the first
row in the run-off triangle). The first column of the matrix ( |
overall |
Table with the summary of the true/estimated reserve:
|
resids |
Table with basic empirical description characteristics of the
residuals (standard or back-fitted) if the residuals are provided in |
See Also
as.profileLadder()
, parallelReserve()
, mcReserve()
Examples
data(CameronMutual)
summary(CameronMutual)
## standard summary output
summary(mcReserve(CameronMutual))
## summary output with plotOption = TRUE
summary(mcReserve(CameronMutual), plotOption = TRUE)
## summary output with (standard) residuals and plotOption = TRUE
summary(mcReserve(CameronMutual, residuals = TRUE), plotOption = TRUE)
## summary output with (back-fitted) residuals and plotOption = TRUE
summary(mcReserve(observed(CameronMutual), residuals = TRUE), plotOption = TRUE)