Skip to contents

Creates an empty matrix with each historic origin year as row and as calendar year in columns

Usage

skeleton_triangle(first_orig_year, last_orig_year)

Arguments

first_orig_year

desired first origin year

last_orig_year

desired last origin year

Value

empty matrix containing claims history triangle

Examples

skeleton_triangle(2010, 2015)
#>      2010 2011 2012 2013 2014 2015
#> 2010    0    0    0    0    0    0
#> 2011    0    0    0    0    0    0
#> 2012    0    0    0    0    0    0
#> 2013    0    0    0    0    0    0
#> 2014    0    0    0    0    0    0
#> 2015    0    0    0    0    0    0