q0_to_m0 | R Documentation |
Convert the probability of dying during infancy (q0) to the mortality rate for infancy (m0).
q0_to_m0(
q0,
sex = NULL,
a0 = NULL,
infant = c("constant", "linear", "CD", "AK")
)
q0 |
Probability of dying in first year of life. A numeric vector or an rvec. |
sex |
Biological sex. A vector the same length
as |
a0 |
Average age at death for infants who die.
Optional. See help for |
infant |
Calculation method.
See help for |
A numeric vector or rvec.
The term "infant mortality rate" is ambiguous. Demographers sometimes use it to refer to m0 (which is an actual rate) and sometimes use it to refer to q0 (which is a probability.)
lifetab()
Calculate a full life table.
library(dplyr, warn.conflicts = FALSE)
west_lifetab |>
filter(age == 0, level <= 5) |>
select(level, sex, age, mx, qx) |>
mutate(m0 = q0_to_m0(q0 = qx, sex = sex, infant = "CD"))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.