BUILD_PNADC_PANEL


Usage:

Basic Panel:

panel_data <- build_pnadc_panel(dat = pnad_sample, panel = "basic")

Advanced Panel (Stages 1, 2, or 3):

# Stage 1: Exact matching with donated birth dates
panel_data <- build_pnadc_panel(dat = pnad_sample, panel = "advanced_1")

# Stage 2: Relaxed matching constraints
panel_data <- build_pnadc_panel(dat = pnad_sample, panel = "advanced_2")

# Stage 3: Fuzzy matching using Graph Theory (Recommended)
panel_data <- build_pnadc_panel(dat = pnad_sample, panel = "advanced_3")

Description

Our load_pnadc function uses the internal function build_pnadc_panel to identify households and individuals across quarters. The base method used for the identification draws from the paper of Ribas, Rafael Perez, and Sergei Suarez Dillon Soares (2008): “Sobre o painel da Pesquisa Mensal de Emprego (PME) do IBGE”, with modernizations implemented by the Data Zoom team to handle missing data and typographical errors.


Basic Identification

The household identifier – stored as id_dom – combines the variables:

In order to create a unique number for every combination of those variables.


The basic individual identifier – stored as id_ind – combines the household id with:

In order to create a unique number for every combination of those variables.


Advanced Identification

On individuals who were not matched across all interviews using the basic method, we apply a progressive multi-stage algorithm to increase matching power without compromising uniqueness.

Identification Rates

The table below shows the average unconditional tracking rates (base line) obtained using the basic and advanced identification algorithms across multiple panels.

Note: Following the Data Zoom methodological guidelines, we reserve the term Attrition strictly for the dropout of households. When referring to individuals (people), we use the term Identification Rate. Wave 1 represents the pure initial identification rate (data lost exclusively due to the inability to construct a valid identifier or household grouping constraints). The subsequent waves (2 to 5) represent the cumulative loss of tracked data over time.

Interview (Wave) Basic Rate (%) Adv 1 Rate (%) Adv 2 Rate (%) Adv 3 Rate (%) Difference (Adv 3 - Basic)
1 93.82378 95.82954 96.40170 96.39606 + 2.57228 p.p.
2 81.63945 84.52960 85.32100 85.63223 + 3.99278 p.p.
3 75.58231 78.90345 79.87407 80.37762 + 4.79531 p.p.
4 71.13217 74.66729 75.75082 76.39818 + 5.26601 p.p.
5 67.56865 71.18041 72.31560 73.06694 + 5.49829 p.p.

Each cell in the rate columns represents the percentage of raw PNADC individual observations successfully identified and tracked in that specific interview, using the total number of raw lines from Wave 1 as the universal denominator.