📚 Introductory Econometrics with MORISTAT

A Practical Guide to Empirical Analysis

Naguib Lallmahomed · naglal@linux-mauritius.com · 2026-06-14


Chapter 10: Limited Dependent Variable Models

🎯 Learning Objectives

Upon completing this chapter, you will be able to:

10.1 What are Limited Dependent Variables?

So far, we have assumed that the dependent variable Y is continuous (e.g., sales, GDP, wages). However, in many applications, Y is limited or discrete:

TypeDescriptionExample
BinaryTwo outcomes (0/1)Employed/Unemployed, Pass/Fail
MultinomialMultiple unordered outcomesMode of transport (car/bus/train)
OrderedMultiple ordered outcomesSurvey responses (Poor/Good/Excellent)
CensoredContinuous but limitedWages (top-coded), hours worked

Why OLS fails for binary Y:

10.2 Binary Choice Models: Logit and Probit

10.2.1 The Latent Variable Framework

Y* = β₀ + β₁X₁ + β₂X₂ + ⋯ + βkXk + u

10.2.2 The Logit Model

P(Y = 1 | X) = Λ(β₀ + β₁X₁ + ⋯ + βkXk) = e / (1 + e)

10.2.3 The Probit Model

P(Y = 1 | X) = Φ(β₀ + β₁X₁ + ⋯ + βkXk)

Comparison:

10.3 Marginal Effects

In Logit/Probit, coefficients cannot be interpreted directly as marginal effects.

10.3.1 Marginal Effect for a Continuous X

∂P(Y = 1 | X) / ∂Xj = f(Xβ) × βj

10.3.2 Marginal Effect for a Binary X

ΔP = P(Y = 1 | X = 1) − P(Y = 1 | X = 0)

10.4 Multinomial and Ordered Models

10.4.1 Multinomial Logit

Example: Mode of transport to work:

10.4.2 Ordered Logit/Probit

10.5 MORISTAT Examples

10.5.1 Binary Choice Data Format

Employed,Education,Experience,Age
1,16,10,35
0,12,5,25
1,18,15,45
0,14,8,30
1,20,20,50

10.5.2 Running a Logit Model in MORISTAT

MORISTAT> LOAD binary_data.csv
MORISTAT> SUMMARY
MORISTAT> REGRESS Employed ~ Education Experience Age

10.6 Practical Exercises

Exercise 10.1: Logit vs Probit

You estimate both a Logit and a Probit model for the probability of mortgage default.

  1. Are these coefficients consistent with the Logit/Probit scale relationship?
  2. Calculate the marginal effect for Income for both models (assume density at mean = 0.25 for Logit, 0.40 for Probit).
  3. Are the marginal effects similar?

Solution:

  • Logit β = -0.035, Probit β = -0.022
  • Ratio: 0.035 / 0.022 = 1.59 ≈ 1.6 ✓ (consistent)
  • Logit ME: -0.035 × 0.25 = -0.00875
  • Probit ME: -0.022 × 0.40 = -0.0088
  • Marginal effects are virtually identical

Exercise 10.2: Interpreting Logit Coefficients

You estimate the following Logit model for the probability of being employed:

P(Employed = 1) = Λ(-2.5 + 0.3 × Education - 0.02 × Experience + 0.05 × Age)
  1. What is the effect of Education on the probability of being employed?
  2. What is the odds ratio for Education?
  3. What is the marginal effect of Education evaluated at the mean where density = 0.2?

Solution:

  • Effect of Education: β = 0.3 (positive → higher education increases employment probability)
  • Odds ratio: e0.3 = 1.35 (each additional year increases odds of employment by 35%)
  • Marginal effect: 0.3 × 0.2 = 0.06 (6 percentage points increase in employment probability)

Exercise 10.3: Multinomial Choice

You are studying mode choice for commuting. The multinomial logit results show:

  1. Interpret the coefficient on Income for Bus.
  2. Interpret the coefficient on Income for Train.
  3. What does this suggest about the relationship between income and mode choice?

Solution:

  • Bus vs. Car: Higher income reduces the relative probability of choosing Bus over Car
  • Train vs. Car: Higher income reduces the relative probability of choosing Train over Car
  • As income increases, people are more likely to choose Car over public transport

10.7 Key Terms

Limited Dependent Variable Binary Choice Model Logit Model Probit Model Logistic Function Latent Variable Maximum Likelihood (ML) Marginal Effect Odds Ratio Multinomial Logit Ordered Logit Ordered Probit Baseline Category Cut Points / Thresholds

10.8 Further Reading

10.9 What's Next?

Congratulations! You have completed all 10 chapters of Introductory Econometrics with MORISTAT.

📚 View Glossary (Coming Soon)

🏠 Return to Table of Contents

🔄 Ready to connect with MORISTAT?