Compute total fertility rate from age-specific fertility rates
Source:R/total_fertility_rate.R
total_fertility_rate.Rd
Total fertility rate is the expected number of babies per woman in a life-time given the fertility rate at each age of a woman's life.
Examples
# Compute Norwegian total fertility rates over time
norway_fertility |>
total_fertility_rate()
#> # A vital: 56 x 2 [1Y]
#> Year tfr
#> <int> <dbl>
#> 1 1967 2.78
#> 2 1968 2.75
#> 3 1969 2.70
#> 4 1970 2.51
#> 5 1971 2.49
#> 6 1972 2.38
#> 7 1973 2.23
#> 8 1974 2.13
#> 9 1975 1.98
#> 10 1976 1.86
#> # ℹ 46 more rows