Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
5843c84
Update datazoom_censo.ado
giovannaribeirops Aug 22, 2025
0134332
compatibilizacao censo 2022 pessoas ate educacao
giovannaribeirops Aug 29, 2025
46b0149
Update datazoom_censo.ado - compatibilização Censo 2022 com demais an…
giovannaribeirops Aug 30, 2025
724d5de
Update datazoom_censo.ado
giovannaribeirops Sep 8, 2025
63c7002
Update datazoom_censo.ado
giovannaribeirops Sep 22, 2025
79b1512
Update datazoom_censo.ado
giovannaribeirops Sep 22, 2025
fb8b681
Update datazoom_social_en.dlg
giovannaribeirops Dec 8, 2025
b811125
Update datazoom_social.dlg
giovannaribeirops Dec 8, 2025
7f62c21
Update README_en.md
giovannaribeirops Dec 8, 2025
48c581c
Update README_en.md
giovannaribeirops Dec 8, 2025
29d6e19
Update README_en.Rmd
giovannaribeirops Dec 8, 2025
1365019
Update README.Rmd
giovannaribeirops Dec 8, 2025
a818f0f
Update censo.Rmd
giovannaribeirops Dec 8, 2025
91a51f4
Update censo.Rmd
giovannaribeirops Dec 8, 2025
b2fffc8
Update censo.Rmd
giovannaribeirops Dec 8, 2025
8345d56
Update censo.Rmd
giovannaribeirops Dec 8, 2025
91a2841
Update datazoom_censo.dlg
giovannaribeirops Dec 8, 2025
80300e0
Update datazoom_censo.sthlp
giovannaribeirops Dec 8, 2025
45a96d3
Update datazoom_censo_en.dlg
giovannaribeirops Dec 8, 2025
f7a5b1a
Update datazoom_censo_en.dlg
giovannaribeirops Dec 8, 2025
ebaec33
Update datazoom_censo_en.sthlp
giovannaribeirops Dec 8, 2025
877b291
Update datazoom_censo.sthlp
giovannaribeirops Dec 8, 2025
e4779aa
Merge branch 'main' into compat_censo_2022
giovannaribeirops Dec 8, 2025
92c1c13
Update README_en.Rmd
giovannaribeirops Dec 9, 2025
8607bd9
Update README.Rmd
giovannaribeirops Dec 9, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1,258 changes: 1,258 additions & 0 deletions Censo/datazoom_censo.ado

Large diffs are not rendered by default.

29 changes: 22 additions & 7 deletions Censo/datazoom_censo.dlg
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ BEGIN
CHECKBOX chk91 @ +20 100 ., label("1991") onclickon(script c91on) onclickoff(program c91off) option(1991)
CHECKBOX chk00 @ +20 100 ., label("2000") onclickon(script c00on) onclickoff(program c00off) option(2000)
CHECKBOX chk10 @ +20 100 ., label("2010") onclickon(script c10on) onclickoff(program c10off) option(2010)
CHECKBOX chk22 @ +20 100 ., label("2022") onclickon(script c22on) onclickoff(program c22off) option(2022)

BUTTON fldata 10 +35 115 ., label("Dados originais...") onpush(script dados)
BUTTON fldict 10 +25 115 ., label("Salvando...") onpush(script salvando)
Expand All @@ -36,7 +37,7 @@ BEGIN
CHECKBOX chkPA +85 -50 200 ., label("Pará") onclickoff(script nemtudoN) option(PA)
CHECKBOX chkRO @ +25 200 ., label("Rondônia") onclickoff(script nemtudoN) option(RO)
CHECKBOX chkRR @ +25 200 ., label("Roraima") onclickoff(script nemtudoN) option(RR)
CHECKBOX chkTO -85 +25 200 ., label("Tocantins (1991 a 2010)") onclickoff(script nemtudoN) option(TO)
CHECKBOX chkTO -85 +25 200 ., label("Tocantins (1991 a 2022)") onclickoff(script nemtudoN) option(TO)

CHECKBOX chkregNE 140 +45 175 183, label("Nordeste") onclickon(script marcatudoNE) onclickoff(script desmarcatudoNE) groupbox
CHECKBOX chkAL +5 +25 200 ., label("Alagoas") onclickoff(script nemtudoNE) option(AL)
Expand Down Expand Up @@ -66,7 +67,7 @@ BEGIN
CHECKBOX chkGO +5 +18 200 ., label("Goiás") onclickoff(script nemtudoCO) option(GO)
CHECKBOX chkMT @ +23 200 ., label("Mato Grosso") onclickoff(script nemtudoCO) option(MT)
CHECKBOX chkDF @ +23 200 ., label("Distrito Federal") onclickoff(script nemtudoCO) option(DF)
CHECKBOX chkMS @ +23 200 ., label("Mato G. do Sul (1980 to 2010)") onclickoff(script nemtudoCO) option(MS)
CHECKBOX chkMS @ +23 200 ., label("Mato G. do Sul (1980 to 2022)") onclickoff(script nemtudoCO) option(MS)

CHECKBOX eng 145 365 200 ., label("Labels em inglês") option(english)

Expand Down Expand Up @@ -120,24 +121,30 @@ BEGIN
main.chkMS.enable
END

SCRIPT c22on // CHECAR SE PRECISARÁ DE ALGUM AJUSTE A MAIS
BEGIN
main.chkTO.enable
main.chkMS.enable
END

PROGRAM c80off
BEGIN
if main.chk91.isneq(1) & main.chk00.isneq(1) & main.chk10.isneq(1) {
if main.chk91.isneq(1) & main.chk00.isneq(1) & main.chk10.isneq(1) & main.chk22.isneq(1) {
call main.chkMS.disable
}
END

PROGRAM c91off
BEGIN
if main.chk00.isneq(1) & main.chk10.isneq(1) {
if main.chk00.isneq(1) & main.chk10.isneq(1) & main.chk22.isneq(1) {
call main.chkMS.disable
call main.chkTO.disable
}
END

PROGRAM c00off
BEGIN
if main.chk91.isneq(1) & main.chk10.isneq(1) {
if main.chk91.isneq(1) & main.chk10.isneq(1) & main.chk22.isneq(1) {
call main.chkMS.disable
call main.chkTO.disable
}
Expand All @@ -147,7 +154,15 @@ END

PROGRAM c10off
BEGIN
if main.chk91.isneq(1) & main.chk00.isneq(1) {
if main.chk91.isneq(1) & main.chk00.isneq(1) & main.chk22.isneq(1) {
call main.chkMS.disable
call main.chkTO.disable
}
END

PROGRAM c22off
BEGIN
if main.chk91.isneq(1) & main.chk00.isneq(1) & main.chk10.isneq(1) {
call main.chkMS.disable
call main.chkTO.disable
}
Expand Down Expand Up @@ -302,7 +317,7 @@ BEGIN
put "datazoom_censo"
beginoptions
put "years("
option main.chk70 main.chk80 main.chk91 main.chk00 main.chk10
option main.chk70 main.chk80 main.chk91 main.chk00 main.chk10 main.chk22
put ") "
put "ufs("
option main.chkRO main.chkAC main.chkAM main.chkRR main.chkPA main.chkAP ///
Expand Down
14 changes: 10 additions & 4 deletions Censo/datazoom_censo.sthlp
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ Digite {cmd:db datazoom_censo} para utilizar a função via caixa de diálogo.
{p 4 4 2}
{cmd:datazoom_censo} extrai e contrói bases de dados do Censo Demográfico em formato Stata (.dta) a partir
dos microdados originais, que podem ser obtidos do site do IBGE. O programa pode ser utilizado para
os anos de 1970 a 2010.
os anos de 1970 a 2022.

{p 4 4 2}
Adicionalmente, existe a opção de compatibilizar variáveis ao longo dos anos. Isso é feito para
Expand All @@ -68,7 +68,7 @@ termos metodológicos. O processo de compatibilização está documentado em
somente as variáveis compatibilizadas permanecem na base de dados final (além das variáveis
de controle). Além disso, são incorporadas variáveis relacionadas a mudanças geopolíticas ocorridas no
período, as chamadas Áreas Mínimas Comparáveis. Finalmente, as variáveis monetárias são deflacionadas
para agosto de 2010.
para [VER DE ACORDO COM O PERIODO DE REFERENCIA DO CENSO 2022] de 2022.

{p 4 4 2}
O programa gera uma base de dados para cada unidade da federação e ano escolhidos. Se for o caso, use o comando
Expand All @@ -85,7 +85,7 @@ o ano 2000, o programa gera uma base de dados inclindo as variáveis de domicíl
{dlgtab:Input}

{phang} {opt years(numlist)} especifica a lista de anos com os quais o usuário deseja trabalhar. Este programa
pode ser utilizado para os anos de 1970 a 2010.
pode ser utilizado para os anos de 1970 a 2022.

{phang} {opt original(str)} indica o caminho da pasta onde estão localizados os arquivos de dados originais. Para
todos os Censos existem ao menos um arquivo para cada estado. Todos eles devem estar posicionados na mesma pasta
Expand Down Expand Up @@ -167,7 +167,7 @@ deve funcionar corretamente após o usuário renomear seus arquivos de dados ada
No entanto, é possível que a estrutura dos dados utilizados pelo Data Zoom seja diferente da estrutura
dos dados possuídos pelo usuário mesmo no caso em que há apenas diferenças nos nomes. Se isso ocorrer,
o programa não irá funcionar corretamente. Para verificar se há diferenças estruturais, confira o dicionário de
variáveis disponível para download em www.econ.puc-rio.br/datazoom e compare com o dicionário em mãos.
variáveis disponível para download em https://datazoom.com.br/pt/ e compare com o dicionário em mãos.

{phang} - Lista dos nomes dos arquivos de microdados. De 1991 em diante, os números dos sufixos, em geral, referem-se
aos códigos IBGE de cada estado.
Expand Down Expand Up @@ -207,6 +207,12 @@ variáveis disponível para download em www.econ.puc-rio.br/datazoom e compare c
{phang} - note que 35_outras e 35_RMSP referem-se aos dados para SP

{phang} - note que 14munic refere-se aos dados redefinidos pelo IBGE para 14 municípios

{phang} 2022

{phang} - prefixos: [INCLUIR QUANDO SOUBER] (para pessoas) e [INCLUIR QUANDO SOUBER] (para domicílios)

{phang} - sufixos: 11 12 13 14 15 16 17 21 22 23 24 25 26 27 28 29 31 32 33 35_outras 35_RMSP 41 42 43 50 51 52 53


{title:Author}
Expand Down
28 changes: 21 additions & 7 deletions Censo/datazoom_censo_en.dlg
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ BEGIN
CHECKBOX chk91 @ +20 100 ., label("1991") onclickon(script c91on) onclickoff(program c91off) option(1991)
CHECKBOX chk00 @ +20 100 ., label("2000") onclickon(script c00on) onclickoff(program c00off) option(2000)
CHECKBOX chk10 @ +20 100 ., label("2010") onclickon(script c10on) onclickoff(program c10off) option(2010)
CHECKBOX chk22 @ +20 100 ., label("2022") onclickon(script c22on) onclickoff(program c22off) option(2022)

BUTTON fldata 10 +35 105 ., label("Original files...") onpush(script dados)
BUTTON fldict 10 +25 105 ., label("Saving...") onpush(script salvando)
Expand All @@ -35,7 +36,7 @@ BEGIN
CHECKBOX chkPA +85 -50 200 ., label("Pará") onclickoff(script nemtudoN) option(PA)
CHECKBOX chkRO @ +25 200 ., label("Rondônia") onclickoff(script nemtudoN) option(RO)
CHECKBOX chkRR @ +25 200 ., label("Roraima") onclickoff(script nemtudoN) option(RR)
CHECKBOX chkTO -85 +25 200 ., label("Tocantins (1991 a 2010)") onclickoff(script nemtudoN) option(TO)
CHECKBOX chkTO -85 +25 200 ., label("Tocantins (1991 to 2022)") onclickoff(script nemtudoN) option(TO)

CHECKBOX chkregNE 130 +45 175 183, label("Northeast") onclickon(script marcatudoNE) onclickoff(script desmarcatudoNE) groupbox
CHECKBOX chkAL +5 +25 200 ., label("Alagoas") onclickoff(script nemtudoNE) option(AL)
Expand Down Expand Up @@ -65,7 +66,7 @@ BEGIN
CHECKBOX chkGO +5 +18 200 ., label("Goiás") onclickoff(script nemtudoCO) option(GO)
CHECKBOX chkMT @ +23 200 ., label("Mato Grosso") onclickoff(script nemtudoCO) option(MT)
CHECKBOX chkDF @ +23 200 ., label("Distrito Federal") onclickoff(script nemtudoCO) option(DF)
CHECKBOX chkMS @ +23 200 ., label("Mato G. do Sul (1980 to 2010)") onclickoff(script nemtudoCO) option(MS)
CHECKBOX chkMS @ +23 200 ., label("Mato G. do Sul (1980 to 2022)") onclickoff(script nemtudoCO) option(MS)

CHECKBOX eng 135 365 200 ., label("Labels in English") option(english)

Expand Down Expand Up @@ -119,24 +120,30 @@ BEGIN
main.chkMS.enable
END

SCRIPT c22on // CHECAR SE PRECISARÁ DE ALGUM AJUSTE A MAIS
BEGIN
main.chkTO.enable
main.chkMS.enable
END

PROGRAM c80off
BEGIN
if main.chk91.isneq(1) & main.chk00.isneq(1) & main.chk10.isneq(1) {
if main.chk91.isneq(1) & main.chk00.isneq(1) & main.chk10.isneq(1) & main.chk22.isneq(1) {
call main.chkMS.disable
}
END

PROGRAM c91off
BEGIN
if main.chk00.isneq(1) & main.chk10.isneq(1) {
if main.chk00.isneq(1) & main.chk10.isneq(1) & main.chk22.isneq(1) {
call main.chkMS.disable
call main.chkTO.disable
}
END

PROGRAM c00off
BEGIN
if main.chk91.isneq(1) & main.chk10.isneq(1) {
if main.chk91.isneq(1) & main.chk10.isneq(1) & main.chk22.isneq(1) {
call main.chkMS.disable
call main.chkTO.disable
}
Expand All @@ -146,12 +153,19 @@ END

PROGRAM c10off
BEGIN
if main.chk91.isneq(1) & main.chk00.isneq(1) {
if main.chk91.isneq(1) & main.chk00.isneq(1) & main.chk22.isneq(1) {
call main.chkMS.disable
call main.chkTO.disable
}
END

PROGRAM c22off
BEGIN
if main.chk91.isneq(1) & main.chk00.isneq(1) & main.chk10.isneq(1) {
call main.chkMS.disable
call main.chkTO.disable
}
END

SCRIPT dados
BEGIN
Expand Down Expand Up @@ -301,7 +315,7 @@ BEGIN
put "datazoom_censo"
beginoptions
put "years("
option main.chk70 main.chk80 main.chk91 main.chk00 main.chk10
option main.chk70 main.chk80 main.chk91 main.chk00 main.chk10 main.chk22
put ") "
put "ufs("
option main.chkRO main.chkAC main.chkAM main.chkRR main.chkPA main.chkAP ///
Expand Down
16 changes: 11 additions & 5 deletions Censo/datazoom_censo_en.sthlp
Original file line number Diff line number Diff line change
Expand Up @@ -57,15 +57,15 @@ Use command {cmd:db datazoom_censo_en} to access through dialog box.

{p 4 4 2}
{cmd:datazoom_censo} extracts and builds Censo databases from the original IBGE microdata.
Program can be used for Censo years 1970 to 2010.
Program can be used for Censo years 1970 to 2022.

{p 4 4 2}
The program can implement an algorithm to make variables compatible through waves.
This is valid for those variables that exist in at least two waves and are not too much different in terms
of survey methodology. The procedures applied through that algorithm are documented in "Census - Making variables compatible"
disposable for download on the Portal website. In addition, to address the administrative boundaries changes
issue, variables identifying consistet areas over time are included in the database. Under this option,
noncompatible variables are deleted during the process. Moreover, monetary variables are deflated to August 2010.
noncompatible variables are deleted during the process. Moreover, monetary variables are deflated to [VER DE ACORDO COM O PERIODO DE REFERENCIA DO CENSO 2022] 2022.

{p 4 4 2}
The program generates one database for each federative unit and wave chosen. If necessary, use the
Expand All @@ -82,7 +82,7 @@ If only one option {opt pes} {opt fam} {opt dom} is selected, the program will
{dlgtab:Input}

{phang} {opt years(numlist)} specifies the list of waves the user wants to work with. Alternatives are the
1970, 1980, 1991, 2000 and 2010 waves.
1970, 1980, 1991, 2000, 2010 and 2022 waves.

{phang} {opt original(str)} indicates the folder path where the user has copied the original data files. Each
census has at least one file for each state. All files must be located in the same folder so that the program functions properly.
Expand Down Expand Up @@ -158,7 +158,7 @@ work properly after the user rename his data file by adapting it to the one foun
However, it is possible that the structure of the data used by Data Zoom is different from the structure of
the data owned by the user even in the case where apparently there are differences in names only. In this case,
the program will not work correctly. To check for possible structural differences, please check the variables dictionary
available for download in www.econ.puc-rio.br/datazoom and compare it with the dictionary at hand.
available for download in https://datazoom.com.br/en/ and compare it with the dictionary at hand.

{phang} - Microdata names list. For 1991 onward, suffix number refers, in general,
to the IBGE Federative Unit codes.
Expand Down Expand Up @@ -199,7 +199,13 @@ available for download in www.econ.puc-rio.br/datazoom and compare it with the d

{phang} - note that 14munic refers to the Census 2000 file redefined by IBGE for 14 municipalities


{phang} 2022

{phang} - prefixes: [INCLUIR QUANDO SOUBER] (for individuals) and [INCLUIR QUANDO SOUBER] (for households)

{phang} - suffixes: 11 12 13 14 15 16 17 21 22 23 24 25 26 27 28 29 31 32 33 35_outras 35_RMSP 41 42 43 50 51 52 53


{title:Author}

{p 4 4 2}
Expand Down
2 changes: 1 addition & 1 deletion README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ Clique nos botões abaixo para ver informações adicionais sobre cada pesquisa.

| | | | |
|:-----:|:------:|:-----:|:-----:|
| <a href = "#censo"> <kbd> <br> &nbsp;&nbsp; <font size = 3> Censo </font> &nbsp;&nbsp; <br><br> </kbd> </a> <br> <br> <small> Censo Demográfico </small> <br> <small> 1970 a 2010 </small> | <a href = "#ecinf"> <kbd> <br> &nbsp;&nbsp; <font size = 3> ECINF </font> &nbsp;&nbsp; <br><br> </kbd> </a> <br><br> <small> Economia Informal Urbana </small> <br> <small> 1997 e 2003 </small> | <a href = "#pme"> <kbd> <br> &nbsp;&nbsp; <font size = 3> PME </font> &nbsp;&nbsp; <br><br> </kbd> </a> <br><br> <small> Pesquisa Mensal de Emprego </small> <br> <small> 1990 a 2015 </small> | <a href = "#pnad"> <kbd> <br> &nbsp;&nbsp; <font size = 3> PNAD </font> &nbsp;&nbsp; <br><br> </kbd> </a> <br><br> <small> PNAD Antiga </small> <br> <small> 2001 a 2015 </small> |
| <a href = "#censo"> <kbd> <br> &nbsp;&nbsp; <font size = 3> Censo </font> &nbsp;&nbsp; <br><br> </kbd> </a> <br> <br> <small> Censo Demográfico </small> <br> <small> 1970 a 2022 </small> | <a href = "#ecinf"> <kbd> <br> &nbsp;&nbsp; <font size = 3> ECINF </font> &nbsp;&nbsp; <br><br> </kbd> </a> <br><br> <small> Economia Informal Urbana </small> <br> <small> 1997 e 2003 </small> | <a href = "#pme"> <kbd> <br> &nbsp;&nbsp; <font size = 3> PME </font> &nbsp;&nbsp; <br><br> </kbd> </a> <br><br> <small> Pesquisa Mensal de Emprego </small> <br> <small> 1990 a 2015 </small> | <a href = "#pnad"> <kbd> <br> &nbsp;&nbsp; <font size = 3> PNAD </font> &nbsp;&nbsp; <br><br> </kbd> </a> <br><br> <small> PNAD Antiga </small> <br> <small> 2001 a 2015 </small> |
| <a href = "#pnad-contínua"> <kbd> <br> <font size = 3> PNAD Contínua </font> <br><br> </kbd> </a> <br><br> <small> PNAD Contínua </small> <br> <small> 2012 em diante </small> | <a href = "#pnad-covid"> <kbd> <br> &nbsp; <font size = 3> PNAD Covid </font> &nbsp; <br><br> </kbd> </a> <br><br> <small> PNAD Covid </small> <br> <small> 2020 </small> | <a href = "#pns"> <kbd> <br> &nbsp;&nbsp; <font size = 3> PNS </font> &nbsp;&nbsp; <br><br> </kbd> </a> <br><br> <small> Pesquisa Nacional de Saúde </small> <br> <small> 2013 e 2019 </small> | <a href = "#pof"> <kbd> <br> &nbsp;&nbsp; <font size = 3> POF </font> &nbsp;&nbsp; <br><br> </kbd> </a> <br><br> <small> Pesquisa de Orçamentos Familiares </small> <br> <small> 1995 a 2018 </small> |

<a href = "#créditos">![Static Badge](https://img.shields.io/badge/Cr%C3%A9ditos%20-%20Departamento%20de%20Economia%20PUC%20Rio%20-%20blue) </a> <a href = "#créditos"> ![Static Badge](https://img.shields.io/badge/Cita%C3%A7%C3%A3o%20-%20green) </a>
Expand Down
2 changes: 1 addition & 1 deletion README_en.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ Click on the buttons below for additional information on each survey.

| | | | |
|:-----:|:------:|:-----:|:-----:|
| <a href = "#censo"> <kbd> <br> &nbsp;&nbsp; <font size = 3> Censo </font> &nbsp;&nbsp; <br><br> </kbd> </a> <br> <br> <small> Demographic Census </small> <br> <small> 1970 to 2010 </small> | <a href = "#ecinf"> <kbd> <br> &nbsp;&nbsp; <font size = 3> ECINF </font> &nbsp;&nbsp; <br><br> </kbd> </a> <br><br> <small> Urban Informal Economy </small> <br> <small> 1997 and 2003 </small> | <a href = "#pme"> <kbd> <br> &nbsp;&nbsp; <font size = 3> PME </font> &nbsp;&nbsp; <br><br> </kbd> </a> <br><br> <small> Monthly Employment Survey </small> <br> <small> 1990 to 2015 </small> | <a href = "#pnad"> <kbd> <br> &nbsp;&nbsp; <font size = 3> PNAD </font> &nbsp;&nbsp; <br><br> </kbd> </a> <br><br> <small> Old PNAD </small> <br> <small> 2001 to 2015 </small> |
| <a href = "#censo"> <kbd> <br> &nbsp;&nbsp; <font size = 3> Censo </font> &nbsp;&nbsp; <br><br> </kbd> </a> <br> <br> <small> Demographic Census </small> <br> <small> 1970 to 2022 </small> | <a href = "#ecinf"> <kbd> <br> &nbsp;&nbsp; <font size = 3> ECINF </font> &nbsp;&nbsp; <br><br> </kbd> </a> <br><br> <small> Urban Informal Economy </small> <br> <small> 1997 and 2003 </small> | <a href = "#pme"> <kbd> <br> &nbsp;&nbsp; <font size = 3> PME </font> &nbsp;&nbsp; <br><br> </kbd> </a> <br><br> <small> Monthly Employment Survey </small> <br> <small> 1990 to 2015 </small> | <a href = "#pnad"> <kbd> <br> &nbsp;&nbsp; <font size = 3> PNAD </font> &nbsp;&nbsp; <br><br> </kbd> </a> <br><br> <small> Old PNAD </small> <br> <small> 2001 to 2015 </small> |
| <a href = "#pnad-contínua"> <kbd> <br> <font size = 3> PNAD Contínua </font> <br><br> </kbd> </a> <br><br> <small> Continuous PNAD </small> <br> <small> 2012 to present </small> | <a href = "#pnad-covid"> <kbd> <br> &nbsp; <font size = 3> PNAD Covid </font> &nbsp; <br><br> </kbd> </a> <br><br> <small> PNAD Covid </small> <br> <small> 2020 </small> | <a href = "#pns"> <kbd> <br> &nbsp;&nbsp; <font size = 3> PNS </font> &nbsp;&nbsp; <br><br> </kbd> </a> <br><br> <small> National Health Survey </small> <br> <small> 2013 and 2019 </small> | <a href = "#pof"> <kbd> <br> &nbsp;&nbsp; <font size = 3> POF </font> &nbsp;&nbsp; <br><br> </kbd> </a> <br><br> <small> Consumer Expenditure Survey </small> <br> <small> 1995 to 2018 </small> |

<a href = "#credits">![Static Badge](https://img.shields.io/badge/Credits%20-%20PUC%20Rio%20Department%20of%20Economics%20-%20blue) </a> <a href = "#credits"> ![Static Badge](https://img.shields.io/badge/Citation%20-%20green) </a>
Expand Down
Loading