The four rules, on one card
| Model | Name | β̂ means | Say it like this |
|---|---|---|---|
| y = β₀ + β₁x | Level-level | A one-unit rise in x changes y by β̂ units | “One more year of schooling is associated with £1,240 more annual pay” |
| log(y) = β₀ + β₁x | Log-level | A one-unit rise in x changes y by β̂ × 100 percent | “One more year of schooling is associated with 8.7% higher pay” |
| y = β₀ + β₁log(x) | Level-log | A 1% rise in x changes y by β̂ / 100 units | “A 1% rise in firm size is associated with £34 more pay” |
| log(y) = β₀ + β₁log(x) | Log-log | A 1% rise in x changes y by β̂ percent | “A 1% rise in price is associated with a 1.4% fall in quantity” |
Percent vs percentage points (the error that costs the most marks)
• unemployment_rate regressed on GDP growth → coefficient is in percentage points (the variable is already a rate; no log was taken)
• log(unemployment_rate) regressed on GDP growth → coefficient is in percent change of the rate, which is a genuinely confusing object and one reason people rarely log rates
Why economists log absolutely everything
Reason 1 — Elasticities fall out for free
What it assumes: that the elasticity is constant across the whole range of x. That’s a real assumption and it’s often wrong at the extremes.
Reason 2 — It fixes the skew
Reason 3 — Percentage effects are usually the sensible model
Reason 4 — Log differences are growth rates
Log-level says: the effect is the same in percentage terms for everyone.
When ×100 breaks (and what to use instead)
When the approximation is fine: small coefficients, roughly |β̂| < 0.1. Most continuous regressors land here.
| β̂ | Approximation (β̂ × 100) | Exact ((e^β̂ − 1) × 100) | Error |
|---|---|---|---|
| 0.02 | 2.0% | 2.02% | negligible |
| 0.087 | 8.7% | 9.09% | small |
| 0.20 | 20.0% | 22.14% | getting real |
| 0.50 | 50.0% | 64.87% | badly wrong |
| 0.69 | 69.0% | 99.37% | you’ve doubled y, not added 69% |
What to actually write in your assignment
• Log-level: “A one-year increase in schooling is associated with approximately 8.7% higher earnings, holding experience and region constant.”
• Level-log: “A 1% increase in firm size is associated with a £34 increase in annual earnings, holding tenure constant.”
• Log-log: “A 1% increase in price is associated with a 1.4% decrease in quantity demanded — that is, the estimated price elasticity of demand is −1.4.”
2. No units. “Increases by 0.087” is not an interpretation. It’s a reading of the table.
3. No “holding constant.” In a multiple regression, the coefficient is a partial effect. Say so.
Common errors — the full list
“log(wage) coefficient is 0.087, so wages rise 0.087%.” No. Multiply by 100. It’s 8.7%.
Any |β̂| above ~0.1 needs (e^β̂ − 1) × 100. Dummies almost always qualify.
If your y is already a rate, its coefficient is in percentage points and no log was involved. If you logged it, you’re now talking about the percent change of a rate, which is a strange object. Be sure you meant to.
log(0) is undefined and your software will silently drop those rows. If 400 firms reported zero exports and your n fell from 2,000 to 1,600, you haven’t transformed your data — you’ve deleted a quarter of it, and probably the most interesting quarter. Check your n before and after. Every time.
An R² from a model with y as the outcome and one with log(y) as the outcome are measuring variation in different quantities. They are not comparable. This is not a subtle point and it appears in published work anyway.
If you predict log(y) and then exponentiate, you get the predicted median of y, not the mean. For the mean you need a smearing correction. Most undergraduates don’t need this; everyone should know it exists.
Practice questions
Worked answers
The short version
• Log on x → that variable is now in percent
• Both logged → percent-per-percent → elasticity, exactly
• Software gives proportions; ×100 makes them percentages
• For |β̂| > 0.1 — which means nearly every dummy — use (e^β̂ − 1) × 100
• Percent ≠ percentage points, and knowing which you mean is half the marks
• Logs aren’t a technique. They’re a claim about whether effects are absolute or proportional. Make the claim on purpose.
