Glossary

Panel Data

A dataset that follows the same set of cross-sectional units (individuals, firms, countries) over multiple time periods. Panel data combine the richness of cross-sectional variation with the dynamics of time series, enabling researchers to control for unobserved heterogeneity ...

Definition

A dataset that follows the same set of cross-sectional units (individuals, firms, countries) over multiple time periods. Panel data combine the richness of cross-sectional variation with the dynamics of time series, enabling researchers to control for unobserved heterogeneity through fixed or random effects. Panel methods are central to applied microeconomics and policy evaluation.

Why It Matters

Panel data allow analysts to separate within-unit changes from between-unit differences — a distinction that cross-sectional data alone cannot make. This makes it possible to control for time-invariant unobserved factors (such as innate ability or firm culture) and produce more credible causal estimates than purely cross-sectional designs.

Example

A labour economist studies the effect of minimum-wage increases on employment using a panel of 50 U.S. states observed over 20 years. By including state fixed effects, the model controls for persistent differences across states (such as industry composition) that could confound the wage-employment relationship.

Related Terms

Software Notes

  • SPSS: Analyze > Mixed Models > Linear; specify subject variable for panel structure
  • R: plm() from the plm package; e.g., plm(y ~ x, data = df, index = c("id", "year"), model = "within")
  • Stata: xtreg y x, fe for fixed effects; xtreg y x, re for random effects