norway_births {vital}R Documentation

Norwegian mortality and births data

Description

norway_births is an annual vital object covering the years 1900-2022, as provided by the Human Mortality Database on 21 April 2024.

norway_fertality is an annual vital covering the years 1967-2022, as provided by the Human Fertility Database on 21 April 2024.

norway_mortality is an annual vital covering the years 1900-2022, as provided by the Human Mortality Database on 21 April 2024.

Format

Time series of class vital

Source

Human Mortality Database https://mortality.org

Human Fertility Database https://www.humanfertility.org

Examples

library(ggplot2)
# Births
norway_births
norway_births |>
  autoplot(Births)
# Deaths
norway_mortality
norway_mortality |>
  dplyr::filter(Age < 85, Year < 1950, Sex != "Total") |>
  autoplot(Mortality) +
  scale_y_log10()
# Fertility
norway_fertility
norway_fertility |>
  autoplot(Fertility)


[Package vital version 1.1.0 Index]