Labor Market MX

Modified

August 29, 2026

Interactive figures. Everything runs in your browser; series are prepared in R and published as CSV in data/ in the site’s repository.

ENOE, INEGI · Quarterly, 2005–2026 · National

Official statistics from Mexico’s National Survey of Occupation and Employment (ENOE), public data from INEGI. Recomputed here from microdata using the institute’s own methodology — survey design, strata, and expansion factors, not a simple average — and checked against INEGI’s published bulletin for 2024-T1 (largest gap: 0.05 percentage points). Not an original finding: these are public figures, presented here for quick reference.

Other indicators

Six more series, including the informality and informal-sector rates excluding agriculture.

How this is built

1. A validated pipeline, not a one-off script. The full computation — downloading each quarter directly from INEGI, harmonizing field names and weights across the ENOE/ENOE-N/ENOE regime changes since 2005, and applying the survey’s complex design (survey::svydesign, ids = upm, strata = est_d_tri, weights = fac_tri) — lives in a separate private R project, not in this site’s repository. Every rate above is checked against INEGI’s own published figures for 2024-T1; the largest gap is 0.05 percentage points.

2. This site only reads a public CSV. scripts/02-labor-indicators.R exports the national-level rates from that pipeline into data/labor-indicators.csv — nothing else. Re-run it with Rscript scripts/02-labor-indicators.R after the source pipeline updates, which happens once per quarter as INEGI publishes new microdata.

3. The chart reads the CSV client-side. Plain FileAttachment(...).csv() and Observable Plot — no database engine, so nothing depends on a CDN beyond what Quarto already loads for Observable itself.