High-Performance Open-Source Archive
The PNAD Continua (Pesquisa Nacional por Amostra de Domicilios Continua) is IBGE’s continuous household sample survey. While its core questionnaire focuses on labor and income, it includes supplementary health-related modules that are applied in specific quarters.
The healthbR package provides access to 4 health-related
supplementary modules:
| Module | Description | Years |
|---|---|---|
deficiencia |
Persons with disabilities | 2019, 2022, 2024 |
habitacao |
Housing characteristics (sanitation, water) | 2012–2024 |
moradores |
General resident characteristics | 2012–2024 |
aps |
Primary health care access | 2022 (Q2) |
pnadc_modules()
#> # A tibble: 4 x 4
#> module name_pt name_en years
#> <chr> <chr> <chr> <list>
#> 1 deficiencia Pessoas com deficiencia Persons with disab... <int>
#> 2 habitacao Caracteristicas dos domicilios Housing character... <int>
#> 3 moradores Caracteristicas gerais dos morad... General character... <int>
#> 4 aps Atencao primaria a saude Primary health care <int>
# Years for a specific module
pnadc_years("deficiencia")
#> [1] 2019 2022 2024PNAD Continua uses a complex sample design. Survey design variables
(UPA, Estrato, V1028) are always
included in the output. Use as_survey = TRUE to create a
survey design object:
df <- pnadc_data(module = "deficiencia", year = 2022)
# G001: "Tem dificuldade permanente de enxergar" (vision difficulty)
# 1 = Sim, nao consegue de modo algum (cannot at all)
# 2 = Sim, muita dificuldade (great difficulty)
# 3 = Sim, alguma dificuldade (some difficulty)
# 4 = Nao, nenhuma dificuldade (no difficulty)
vision <- df |>
filter(G001 %in% c("1", "2", "3", "4")) |>
count(G001) |>
mutate(pct = n / sum(n) * 100)www.ibge.gov.br/estatisticas/sociais/trabalho/17270-pnad-continua)ftp.ibge.gov.br)
Need mirroring services?
Contact our team at info@vpspulse.com.
Mirror powered by VPSpulse
Infrastructure sponsored by VPSPulse & Secure Payments by ArionPay.