Description
Summarise patterns and communicate how variables move together.
A practical econometrics companion
Description, Prediction, and Causal Analysis for Applied Social Science and Econometrics
The book builds a bridge from statistical reasoning to reproducible practice. It shows how the same regression toolkit changes when the goal is to describe a relationship, predict an outcome, or estimate a causal effect.
Summarise patterns and communicate how variables move together.
Evaluate out-of-sample performance and manage model complexity.
Connect assumptions, research design, and credible counterfactuals.
Learn by translating
Examples are developed side by side so readers can focus on the statistical idea while becoming fluent in both ecosystems.
# Estimate a linear relationship
model <- lm(y ~ x, data = sample)
summary(model)
predict(model, newdata = future)
# Estimate a linear relationship
model = smf.ols("y ~ x", data=sample).fit()
model.summary()
model.predict(future)
Contents
Fourteen chapters move from foundations to flexible prediction and research designs for causal analysis. Companion code is linked where available.
From the teaching slides
Selected material from the authors’ slide deck is presented as concise, responsive lessons. The complete manuscript and slide archive remain off the site.
Open companion
The public repository contains chapter-organised R and Python scripts, runnable workbooks, and example datasets.
This site intentionally does not reproduce the manuscript, slides, solutions, or publisher files. Availability of additional teaching materials is determined by the authors and publisher.