Conditional logistic regression

From Wikipedia the free encyclopedia

Conditional logistic regression is an extension of logistic regression that allows one to account for stratification and matching. Its main field of application is observational studies and in particular epidemiology. It was devised in 1978 by Norman Breslow, Nicholas Day, Katherine Halvorsen, Ross L. Prentice and C. Sabai.[1] It is the most flexible and general procedure for matched data.

Background[edit]

Observational studies use stratification or matching as a way to control for confounding.

Logistic regression can account for stratification by having a different constant term for each stratum. Let us denote the label (e.g. case status) of the th observation of the th stratum and the values of the corresponding predictors. We then take the likelihood of one observation to be

where is the constant term for the th stratum. The parameters in this model can be estimated using maximum likelihood estimation.

For example, consider estimating the impact of exercise on the risk of cardiovascular disease. If people who exercise more are younger, have better access to healthcare, or have other differences that improve their health, then a logistic regression of cardiovascular disease incidence on minutes spent exercising may overestimate the impact of exercise on health. To address this, we can group people based on demographic characteristics like age and zip code of their home residence. Each stratum is a group of people with similar demographics. The vector contains information about the variable of interest (in this case, minutes spent exercising) for individual in stratum . The value is the impact of demographics on cardiovascular disease incidence , which is assumed to be the same for all people in the stratum. The vector (which, in this example, is just a scalar) is the quantity of interest --- the impact of exercise on cardiovascular disease. We can also include control variables within .

Motivation[edit]

Logistic regression as described above works satisfactorily when the number of strata is small relative to the amount of data. If we hold the number of strata fixed and increase the amount of data, estimates of the model parameters ( for each stratum and the vector ) converge to their true values.

Pathological behavior, however, occurs when we have many small strata because the number of parameters grow with the amount of data. For example, if each stratum contains two datapoints, then the number of parameters in a model with datapoints is , so the number of parameters is of the same order as the number of datapoints. In these settings, as we increase the amount of data, the asymptotic results on which maximum likelihood estimation is based on are not valid and the resulting estimates are biased. Conditional logistic regression fixes this issue. In fact, it can be shown that the unconditional analysis of matched pair data results in an estimate of the odds ratio which is the square of the correct, conditional one.[2]

In addition to tests based on logistic regression, several other tests existed before conditional logistic regression for matched data as shown in related tests. However, they did not allow for the analysis of continuous predictors with arbitrary stratum size. All of those procedures also lack the flexibility of conditional logistic regression and in particular the possibility to control for covariates.

Conditional likelihood[edit]

Conditional logistic regression uses a conditional likelihood approach that deals with the above pathological behavior by conditioning on the number of cases in each stratum. This eliminates the need to estimate the strata parameters.

When the strata are pairs, where the first observation is a case and the second is a control, this can be seen as follows

With similar computations, the conditional likelihood of a stratum of size , with the first observations being the cases, is

where is the set of all subsets of size of the set .

The full conditional log likelihood is then simply the sum of the log likelihoods for each stratum. The estimator is then defined as the that maximizes the conditional log likelihood.

Implementation[edit]

Conditional logistic regression is available in R as the function clogit in the survival package. It is in the survival package because the log likelihood of a conditional logistic model is the same as the log likelihood of a Cox model with a particular data structure.[3]

It is also available in python through the statsmodels package starting with version 0.14.[4]

Related tests[edit]

  • Paired difference test allows to test the association between a binary outcome and a continuous predictor while taking into account pairing.
  • Cochran-Mantel-Haenszel test allows to test the association between a binary outcome and a binary predictor while taking into account stratification with arbitrary strata size. When its conditions of application are verified, it is identical to the conditional logistic regression score test.[5]

Notes[edit]

  1. ^ Breslow NE, Day NE, Halvorsen KT, Prentice RL, Sabai C (1978). "Estimation of multiple relative risk functions in matched case-control studies". Am J Epidemiol. 108 (4): 299–307. doi:10.1093/oxfordjournals.aje.a112623. PMID 727199.
  2. ^ Breslow, N.E.; Day, N.E. (1980). Statistical Methods in Cancer Research. Volume 1-The Analysis of Case-Control Studies. Lyon, France: IARC. pp. 249–251. Archived from the original on 2016-12-26. Retrieved 2016-11-04.
  3. ^ Lumley, Thomas. "R documentation Conditional logistic regression". Retrieved November 3, 2016.
  4. ^ "statsmodels.discrete.conditional_models.ConditionalLogit". Retrieved March 25, 2023.
  5. ^ Day, N. E., Byar, D. P. (1979). "Testing hypotheses in case-control studies-equivalence of Mantel-Haenszel statistics and logit score tests". Biometrics. 35 (3): 623–630. doi:10.2307/2530253. JSTOR 2530253. PMID 497345.{{cite journal}}: CS1 maint: multiple names: authors list (link)