Parameter Estimation in Market Response

Summary

Chapter 5 covers the estimation toolkit for market response models: OLS and its 8 assumptions, GLS/FGLS for autocorrelated errors, SUR for multi-equation systems, 2SLS/3SLS for simultaneous equations, and Bayesian approaches including hierarchical Bayes (HB) and Empirical Bayes (EB). Also covers IV estimation for endogenous regressors.

Variable Classification

Variable Types

  • Exogenous: determined outside the model (macro variables, season)
  • Predetermined: includes lagged endogenous variables; not correlated with current errors
  • Current endogenous: jointly determined with the dependent variable in the same period (e.g., advertising when spending reacts to same-period sales signals)

Simultaneity arises when marketing instruments are current endogenous — OLS is biased and inconsistent.

OLS

OLS Estimator

For the linear model :

BLUE (Best Linear Unbiased Estimator) under all 8 Gauss-Markov assumptions (Table 5-1):

  1. Linearity
  2. Fixed (or independence of and )
  3. Full rank of
  4. (homoscedasticity + no autocorrelation)
  5. No multicollinearity
  6. Correct functional form
  7. No simultaneity bias

Generalized Least Squares (GLS/FGLS)

When errors are autocorrelated or heteroscedastic (, ):

When is unknown, Feasible GLS (FGLS) substitutes a consistent estimate . In practice: estimate the error ARMA structure from OLS residuals, then transform data by the estimated filter.

Seemingly Unrelated Regressions (SUR)

For a system of equations (e.g., sales equations for multiple brands) with correlated errors across equations:

SUR (Zellner 1962) is more efficient than OLS equation-by-equation when:

  1. Errors are correlated across equations
  2. Regressors differ across equations

SUR is the standard estimator for MCI/MNL market share systems (see Market Share Models) and multi-brand advertising effects.

Simultaneous System and 2SLS/3SLS

Structural System

The full simultaneous system in matrix form:

where = current endogenous variables, = predetermined variables, and = structural coefficient matrices.

2SLS (Two-Stage Least Squares): instrument endogenous RHS variables with exogenous variables. First stage: regress endogenous on ; second stage: substitute fitted values in structural equation. Consistent but less efficient than 3SLS.

3SLS: adds SUR cross-equation correlation to 2SLS. Full system efficiency when the model is correctly specified.

ILS (Indirect Least Squares): OLS on the reduced form, then back-solves for structural parameters. Exact identification only.

See Instrumental Variables for the IV estimator in a causal inference context.

Bayesian Estimation

Bayesian Posterior

The Bayesian approach updates a prior distribution with the likelihood :

With a noninformative prior (Eq 5.15):

The posterior mean equals the OLS estimate; Bayesian and frequentist results coincide under diffuse priors.

Hierarchical Bayes (HB) Shrinkage

HB Shrinkage Estimator

When parameters vary across brands/markets (random coefficients), the HB estimator (Eq 5.30) shrinks individual estimates toward the grand mean:

where is a matrix that downweights individual estimates with high sampling variance and upweights the pooled mean. This is a Stein-like shrinkage rule that dominates OLS in mean squared error when there are parameters.

Empirical Bayes (EB): estimates the hyperparameters from data rather than specifying them a priori. More automated but ignores uncertainty in hyperparameters.

Related to Hierarchical Linear Models and the partial-pooling perspective in Partial Pooling as Multiple Comparisons Correction.

Estimation Decision Tree (Figure 5-2)

Single equation?
├── No autocorrelation, homoscedastic → OLS
├── Autocorrelated errors → GLS/FGLS
└── Endogenous regressors → IV / 2SLS

Multiple equations?
├── No cross-equation correlation → OLS equation-by-equation
├── Correlated errors, different X → SUR
└── Simultaneous system → 2SLS or 3SLS

Hausman Test for Endogeneity

Hausman Test

To test whether a regressor is endogenous (correlated with ):

  1. Regress on all exogenous variables ; save residuals
  2. Include in the structural equation alongside
  3. If the coefficient on is significant (Wald statistic), is endogenous — use IV/2SLS

This is also called the regression-based Hausman-Wu test.

Related to Instrumental Variables (MHE context).