mortalityTable.improvementFactors-class: Class mortalityTable.improvementFactors - Cohort life table...

Description Slots Examples

Description

A cohort life table, obtained by an improvment factor projection from a given base table (PODs for a given observation year).

Slots

baseYear

The base year for the improvements (baseTable describes the death probabilities in this year)

improvement

Yearly improvement factors per age

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
mortalityTables.load("Austria_Annuities_AVOe2005R")
# AVOe 2005R base table with yearly improvements of 3% for age 0, linearly
# decreasing to 0% for age 120.
tb = mortalityTable.improvementFactors(
    ages = ages(AVOe2005R.male),
    deathProbs = periodDeathProbabilities(AVOe2005R.male, Period = 2002),
    baseYear = 2002,
    improvement = 0.03 * (1 - ages(AVOe2005R.male)/121),
    name = "AVOe 2005R base with linearly falling improvements (DEMO)"
)
# Yearly trend is declining:
plotMortalityTrend(tb, AVOe2005R.male, Period = 2017, title = "Mortality Trend")
# The cohort tables for different birth years:
plot(getCohortTable(tb, YOB = 1963), getCohortTable(tb, YOB = 2017))

kainhofer/r-valuation-tables documentation built on Dec. 17, 2020, 3:54 a.m.