decumulate: A function to decumulate a triangle.

Description Usage Arguments Value Examples

View source: R/util.R

Description

A function to decumulate a triangle.

Usage

1
decumulate(triangle)

Arguments

triangle

A matrix of cumulative payments.

Value

A matrix resulting from decumulating the input triangle.

Examples

1
2
3
4
5
6
7
library(BALD) 
#load Generial Liability
data(IncrementalGeneralLiablityTriangle)
#cumulate the incremental triangle
CumulateGeneralLiablityTriangle<-cumulate(IncrementalGeneralLiablityTriangle)
#decumulate the loss triangle
decumulate(CumulateGeneralLiablityTriangle)

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

Related to decumulate in BALD...