powered by
Fill the given probabilities with NA to match the desired age range.
fillAges(probs = c(), givenAges = c(), neededAges = NULL, fill = NA_real_)
Numeric vector
ages assigned to the given vector
desired age range for output
If set, missing values will be replaced with this value. Default is to fill with NA.
# NOT RUN { # 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) # }
Run the code above in your browser using DataLab