Skip to contents

This function estimates the mortality probabilities from a given cumulative survival curve. The survival curve represents the probability of beyond each time point or age.

Usage

get_lifeTable_mortality_probs(survival_curve)

Arguments

survival_curve

A numeric vector representing the survival curve corresponding to each age.

Value

A numeric vector of estimated mortality probabilities corresponding to each age.

Examples

if (FALSE) { # \dontrun{
mortality_probs <- c(0.01, 0.02, 0.03, 0.04)

survival_curve <- get_lifeTable_survival_curve(mortality_probs)

estimated_mortality_probs <- get_lifeTable_mortality_probs(survival_curve)

estimated_mortality_probs
} # }