Link Function

link-functiongeneralized-linear-modelbinary-responselogistic-regressionprobitmodel-selection

Definition

In a generalized linear model (GLM; Nelder-Wedderburn 1972) the link function gg connects the mean of the response to the linear predictor, g(μi)=ηi=xiβg(\mu_i)=\eta_i=x_i'\beta, so that the systematic part of the model is linear on the transformed (link) scale while the response stays in its natural range. For binary data μi=Pr(yi=1)=θi(0,1)\mu_i=\Pr(y_i=1)=\theta_i\in(0,1) and the link maps the probability onto the whole real line; the choice of gg determines the shape of the response curve and, unlike the linear-predictor coefficients, is itself a modeling assumption that can be tested.

Key Ideas

How It Works

  1. Choose a baseline link (often logit) and embed it in a parametric family gλg_\lambda with gλ0=g_{\lambda_0}= baseline.
  2. For a grid of λ\lambda, fit β\beta by maximum likelihood and record the maximized log-likelihood (λ)\ell(\lambda).
  3. Read off λ^=argmaxλ(λ)\hat\lambda=\arg\max_\lambda \ell(\lambda) and an interval of λ\lambda giving acceptable fit; a baseline value outside the interval is evidence against that link.
  4. Alternatively, compute a score test at λ0\lambda_0 to detect symmetric or asymmetric departures cheaply.
  5. Report covariate effects on the selected scale, noting that their interpretation shifts with λ\lambda.

Why It Matters

Open Questions

Related