fillAges: Fill the given probabilities with NA to match the desired age...

Description Usage Arguments Examples

View source: R/fillAges.R

Description

Fill the given probabilities with NA to match the desired age range.

Usage

1
fillAges(probs = c(), givenAges = c(), neededAges = NULL, fill = NA_real_)

Arguments

probs

Numeric vector

givenAges

ages assigned to the given vector

neededAges

desired age range for output

fill

If set, missing values will be replaced with this value. Default is to fill with NA.

Examples

1
2
# Ages 20-70 have linearly increasing death probabilities. Fill with 0 for the whole age range 0-120
fillAges(probs = c(0:50/50), givenAges = 20:70, neededAges = 0:120, fill = 0)

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