Skip to main content

Returns to education on wages (Mincer, OLS)

This illustrates EcoLab's 5-step workflow with the most classic model in labor economics: the Mincer wage equation estimated by OLS. The figures are format illustrations.

Summary: regress log wage on years of schooling and experience to estimate the "return to education" (the payoff to each additional year of schooling).


Step 1 — Ideation

  • Question: by what percentage does one more year of schooling raise wages?

Step 2 — Literature Review

Human-capital theory (Becker, Mincer); standardize citations; clarify variables and the log-lin form.

Step 3 — Data Collection

VariableSymbolMeasurementSource
Log wagelnwagelog(hourly/monthly wage)VHLSS; labor survey
Years of schoolingeducyearsVHLSS
Experienceexper, exper2years and squaredfrom age − schooling − 6
Controlsgender, regionbinaryVHLSS

Step 4 — Modeling

Mincer form (log-lin, with squared experience to capture concavity):

ln(wagei)=β0+β1educi+β2experi+β3experi2+Xiγ+εi\ln(wage_i) = \beta_0 + \beta_1\,educ_i + \beta_2\,exper_i + \beta_3\,exper_i^2 + X_i\gamma + \varepsilon_i

Choose the Classical linear regression family → OLS, with robust standard errors (heteroskedasticity is common in micro data).

Illustrative results (format — not real results):

VariableCoefficientSE (robust)p-value
educ0.0820.0050.000
exper0.0310.0040.000
exper2−0.00050.00010.000
R2R^20.38

Sample interpretation: β^1=0.082\hat{\beta}_1 = 0.082 ⇒ each extra year of schooling is associated with about 8.2% higher wages (approximately, given log-lin); experience is concave (rising then flattening).

* ---- Mincer wage equation (OLS, robust SE) ----
use "vhlss_wage.dta", clear

gen exper2 = exper^2

regress lnwage educ exper exper2 gender region, vce(robust)

Step 5 — Reporting

Export an APA/Harvard… report with replication code.

Endogeneity caveat

educ may be endogenous (unobserved ability affects both schooling and wages) ⇒ OLS may be biased. See the instrumental-variables fix in IV example: Returns to education.

Video tutorial

Video Tutorial: Running the Mincer wage equation (OLS) in EcoLab

See also