Learn R Programming

MortalityLaws (version 2.1.0)

predict.MortalityLaw: Predict function for MortalityLaw

Description

Predict function for MortalityLaw

Usage

# S3 method for MortalityLaw
predict(object, x, ...)

Value

A vector of predicted hazard rates

Arguments

object

An object of class "MortalityLaw"

x

Vector of ages to be considered in prediction

...

Additional arguments affecting the predictions produced.

Author

Marius D. Pascariu

See Also

MortalityLaw

Examples

Run this code
# Extrapolate old-age mortality with the Kannisto model
# Fit ages 80-94 and extrapolate up to 120.

Mx <- ahmd$mx[paste(80:94), "1950"]
M1 <- MortalityLaw(x = 80:94, mx  = Mx, law = 'kannisto')
fitted(M1)
predict(M1, x = 80:120)

# See more examples in MortalityLaw function help page.

Run the code above in your browser using DataLab