exhibit.ata: Returns an age to age development triangle matrix

Description Usage Arguments Examples

Description

Returns an age to age development triangle matrix

Usage

1
2
## S3 method for class 'ata'
exhibit(object, selection = NULL)

Arguments

object

object of class ata from the ChainLadder package

selection

Selected development factors. Should be supplied as a numeric vector of the same length as the number of development periods in the ata development triangle or the number of development periods + 1 (the + 1 will be used as the tail factor).

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
library(ChainLadder)
dev_tri <- ata(RAA)

# No selected development factors
exhibit(dev_tri)

# with selected development factors
exhibit(dev_tri, selection = c(3.0, 1.65, 1.30, 1.2, 1.12, 1.05, 1.035, 1.015, 1.01))

# with selected development factors includeing tail factor
exhibit(dev_tri, selection = c(3.0, 1.65, 1.30, 1.2, 1.12, 1.05, 1.035, 1.015, 1.01, 1.05))

merlinoa/exhibit documentation built on May 22, 2019, 6:52 p.m.