R/datasus_mun_female_pop.R

Defines functions datasus_mun_female_pop

Documented in datasus_mun_female_pop

#' Municipality yearly female population estimates per age group from 2000 to 2021
#'
#' A dataset containing female population estimates for Brazilian municipalities per age groups from 2000 to 2021.
#'
#' The estimates were computed by DataSUS (Brazilian Ministry of Health), manually downloaded from DataSUS website, and organized as a tibble.
#'
#' \describe{
#'   \item{code_muni}{municipality 6 digits code}
#'   \item{year}{year of the estimative}
#'   \item{age_group}{age group}
#'   \item{pop}{population estimative}
#' }
datasus_mun_female_pop <- function(){
  path <- zendown::zen_file(deposit_id = zenodo_deposit, file_name = "datasus_mun_female_pop.rds")
  readRDS(file = path)
}

Try the brpop package in your browser

Any scripts or data that you put into this service are public.

brpop documentation built on Oct. 31, 2024, 1:09 a.m.