The LOGISTIC Procedure

Odds Ratio Estimation

Consider a dichotomous response variable with outcomes event and nonevent. Consider a dichotomous risk factor variable X that takes the value 1 if the risk factor is present and 0 if the risk factor is absent. According to the logistic model, the log odds function, $\mbox{logit}(X)$, is given by

\[  \mbox{logit}(X) \equiv \log \biggl (\frac{\Pr (\mi {event} ~ |~  X)}{\Pr (\mi {nonevent} ~ |~  X)} \biggr ) = \alpha + X \beta \\  \]

The odds ratio $\psi $ is defined as the ratio of the odds for those with the risk factor (X = 1) to the odds for those without the risk factor (X = 0). The log of the odds ratio is given by

\[  \log (\psi ) \equiv \log (\psi (X=1,X=0)) = \mbox{logit}(X=1) - \mbox{logit}(X=0) = (\alpha + 1\times \beta ) - (\alpha + 0\times \beta ) = \beta  \]

In general, the odds ratio can be computed by exponentiating the difference of the logits between any two population profiles. This is the approach taken by the ODDSRATIO statement, so the computations are available regardless of parameterization, interactions, and nestings. However, as shown in the preceding equation for $\log (\psi )$, odds ratios of main effects can be computed as functions of the parameter estimates, and the remainder of this section is concerned with this methodology.

The parameter, $\beta $, associated with X represents the change in the log odds from $X = 0$ to $X = 1$. So the odds ratio is obtained by simply exponentiating the value of the parameter associated with the risk factor. The odds ratio indicates how the odds of the event change as you change X from 0 to 1. For instance, $\psi =2$ means that the odds of an event when X = 1 are twice the odds of an event when X = 0. You can also express this as follows: the percent change in the odds of an event from X = 0 to X = 1 is $(\psi -1)100\%  = 100\% $.

Suppose the values of the dichotomous risk factor are coded as constants a and b instead of 0 and 1. The odds when $X = a$ become $\exp (\alpha + a \beta )$, and the odds when $X = b$ become $\exp (\alpha + b \beta )$. The odds ratio corresponding to an increase in X from a to b is

\[  \psi = \exp [(b - a) \beta ] = [\exp (\beta )]^{b-a} \equiv [\exp (\beta )]^ c  \]

Note that for any a and b such that $c=b-a=1, \psi =\exp (\beta )$. So the odds ratio can be interpreted as the change in the odds for any increase of one unit in the corresponding risk factor. However, the change in odds for some amount other than one unit is often of greater interest. For example, a change of one pound in body weight might be too small to be considered important, while a change of 10 pounds might be more meaningful. The odds ratio for a change in X from a to b is estimated by raising the odds ratio estimate for a unit change in X to the power of $c=b-a$ as shown previously.

For a polytomous risk factor, the computation of odds ratios depends on how the risk factor is parameterized. For illustration, suppose that Race is a risk factor with four categories: White, Black, Hispanic, and Other.

For the effect parameterization scheme (PARAM=EFFECT) with White as the reference group (REF=’White’), the design variables for Race are as follows:

 

Design Variables

Race

$X_1$

$X_2$

$X_3$

Black

1

0

0

Hispanic

0

1

0

Other

0

0

1

White

–1

   –1

–1

The log odds for Black is

\begin{eqnarray*}  \mbox{logit}(\mbox{Black}) & =&  \alpha + (X_1=1) \beta _1 + (X_2=0) \beta _2 + (X_3=0) \beta _3 \\ & =&  \alpha + \beta _1 \end{eqnarray*}

The log odds for White is

\begin{eqnarray*}  \mbox{logit}(\mbox{White}) & =&  \alpha + (X_1=-1) \beta _1 + (X_2=-1) \beta _2+ (X_3=-1) \beta _3 \\ & =&  \alpha - \beta _1 - \beta _2 - \beta _3 \end{eqnarray*}

Therefore, the log odds ratio of Black versus White becomes

\begin{eqnarray*}  \log (\psi (\mbox{Black},\mbox{White})) & =&  \mbox{logit}(\mbox{Black}) - \mbox{logit}(\mbox{White}) \\ & =&  2 \beta _1 + \beta _2 + \beta _3 \end{eqnarray*}

For the reference cell parameterization scheme (PARAM=REF) with White as the reference cell, the design variables for race are as follows:

 

Design Variables

Race

$X_1$

$X_2$

$X_3$

Black

1

0

0

Hispanic

0

1

0

Other

0

0

1

White

0

      0

0

The log odds ratio of Black versus White is given by

\begin{eqnarray*}  {\log (\psi (\mbox{Black},\mbox{White}))} &  = &  \mbox{logit}(\mbox{Black}) - \mbox{logit}(\mbox{White}) \\ &  = &  (\alpha + (X_1=1) \beta _1 + (X_2=0)\beta _2 + (X_3=0) \beta _3) - \\ & &  (\alpha + (X_1=0) \beta _1 + (X_2=0) \beta _2 + (X_3=0) \beta _3) \\ &  = &  \beta _1 \end{eqnarray*}

For the GLM parameterization scheme (PARAM=GLM), the design variables are as follows:

 

Design Variables

Race

$X_1$

$X_2$

$X_3$

$X_4$

Black

1

0

0

0

Hispanic

0

1

0

0

Other

0

0

1

0

White

0

0

0

1

The log odds ratio of Black versus White is

\begin{eqnarray*}  {\log (\psi (\mbox{Black},\mbox{White}))} &  = &  \mbox{logit}(\mbox{Black}) - \mbox{logit}(\mbox{White}) \\ &  = &  (\alpha + (X_1=1) \beta _1 + (X_2=0) \beta _2 +(X_3=0) \beta _3 + (X_4=0) \beta _4) -\\ & &  (\alpha + (X_1=0) \beta _1 + (X_2=0) \beta _2 + (X_3=0) \beta _3 +(X_4=1) \beta _4) \\ &  = &  \beta _1 - \beta _4 \end{eqnarray*}

Consider the hypothetical example of heart disease among race in Hosmer and Lemeshow (2000, p. 56). The entries in the following contingency table represent counts:

 

Race

Disease Status

White

Black

Hispanic

Other

Present

5

20

15

10

Absent

20

10

10

10

The computation of odds ratio of Black versus White for various parameterization schemes is tabulated in Table 58.11.

Table 58.11: Odds Ratio of Heart Disease Comparing Black to White

 

Parameter Estimates

 

PARAM=

${\widehat{\beta }}_1$

${\widehat{\beta }}_2$

${\widehat{\beta }}_3$

${\widehat{\beta }}_4$

Odds Ratio Estimates

EFFECT

0.7651

0.4774

0.0719

 

$\exp (2 \times 0.7651 + 0.4774 + 0.0719) = 8$

REF

2.0794

1.7917

1.3863

 

$\exp (2.0794) = 8 $

GLM

2.0794

1.7917

1.3863

0.0000

$\exp (2.0794) = 8 $


Since the log odds ratio ($\log (\psi )$) is a linear function of the parameters, the Wald confidence interval for $\log (\psi )$ can be derived from the parameter estimates and the estimated covariance matrix. Confidence intervals for the odds ratios are obtained by exponentiating the corresponding confidence limits for the log odd ratios. In the displayed output of PROC LOGISTIC, the Odds Ratio Estimates table contains the odds ratio estimates and the corresponding 95% Wald confidence intervals. For continuous explanatory variables, these odds ratios correspond to a unit increase in the risk factors.

To customize odds ratios for specific units of change for a continuous risk factor, you can use the UNITS statement to specify a list of relevant units for each explanatory variable in the model. Estimates of these customized odds ratios are given in a separate table. Let $(L_ j,U_ j)$ be a confidence interval for $\log (\psi )$. The corresponding lower and upper confidence limits for the customized odds ratio $\exp (c\beta _ j)$ are $\exp (cL_ j)$ and $\exp (cU_ j)$, respectively (for $c>0$), or $\exp (cU_ j)$ and $\exp (cL_ j)$, respectively (for $c<0$). You use the CLODDS= option or ODDSRATIO statement to request the confidence intervals for the odds ratios.

For a generalized logit model, odds ratios are computed similarly, except k odds ratios are computed for each effect, corresponding to the k logits in the model.