predictedPayments: A generic function to plot predicted vs actual payments for...

Description Arguments Details Value See Also Examples

Description

A generic function to plot predicted vs actual payments for models from the BALD package.

Arguments

object

The object from which to plot predicted vs actual payments and from which to return predicted payments.

type

A single character value specifying whether to plot/return the predicted incremental or cumulative payments. Valid values are “incremental” or “cumulative.” See details as to why these may not match up.

logScale

A logical value. If TRUE, then values are plotted on a log scale.

mergePredictedWithObserved

A logical value. See details.

plotObservedValues

A logical value. If FALSE, then only the predicted values are plotted.

plotPredictedOnlyWhereObserved

A logical value. If TRUE, then only the predicted incremental payments with valid corresponding observed (log) incremental payment are plotted. Ignored for type="cumulative".

quantiles

A vector of quantiles for the predicted payments to return. Useful for constructing credible intervals.

plot

A logical value. If TRUE, then the plot is generated and the statistics are returned; otherwise only the statistics are returned.

Details

Because the model is Bayesian, each estimated payment comes as a distribution. The median of this distribution is used as a point estimate when plotting and/or returning values. Note: One cannot calculate the estimated incremental payments from the estimated cumulative payments (and vice versa) since the median of sums need not be equal to the sum of medians.

If mergePredictedWithObserved=TRUE and type="incremental", then any observed incremental payment will be used in place of its corresponding incremental payment. If mergePredictedWithObserved=TRUE and type="cumulative", then only predicted incremental payments (by row) to the right of the last observed cumulative value will enter the calculation. See vignette('BALD').

Value

Mainly called for the side effect of plotting.

See Also

predictedPayments("AnnualAggLossDevModelOutput")

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
rm(list=ls())
options(device.ask.default=FALSE)
library(BALD)
data(IncrementalGeneralLiablityTriangle)
IncrementalGeneralLiablityTriangle <- as.matrix(IncrementalGeneralLiablityTriangle)
print(IncrementalGeneralLiablityTriangle)
data(PCE)
PCE <- as.matrix(PCE)[,1]
PCE.rate <- PCE[-1] / PCE[-length(PCE)] - 1
PCE.rate.length <- length(PCE.rate)
PCE.years <- as.integer(names(PCE.rate))
years.available <- PCE.years <= max(as.integer(
dimnames(IncrementalGeneralLiablityTriangle)[[1]]))
PCE.rate <- PCE.rate[years.available]
PCE.rate.length <- length(PCE.rate)
standard.model.input <- makeStandardAnnualInput(
incremental.payments = IncrementalGeneralLiablityTriangle,
stoch.inflation.weight = 1,
non.stoch.inflation.weight = 0,
stoch.inflation.rate = PCE.rate,
exp.year.type = 'ay',
extra.dev.years=5,
use.skew.t=TRUE)
## Not run: 
standard.model.output <- runLossDevModel(
standard.model.input,
burnIn=30.0E+3,
sampleSize=30.0E+3,
thin=10)
predictedPayments(standard.model.output)

## End(Not run)

BALD documentation built on May 2, 2019, 6:51 a.m.

Related to predictedPayments in BALD...