Tell me more ×
Cross Validated is a question and answer site for statisticians, data analysts, data miners and data visualization experts. It's 100% free, no registration required.

I have a model fitted (from the literature). I also have the raw data for the predictive variables.

What's the equation I should be using to get probabilities? Basically, how do I combine raw data and coefficients to get probabilities?

share|improve this question

2 Answers

up vote 7 down vote accepted

Here is the applied researcher's answer (using the statistics package R).

First, let's create some data, i.e. I am simulating data for a simple bivariate logistic regression model $log(\frac{p}{1-p})=\beta_0 + \beta_1 \cdot x$:

> set.seed(3124)
> 
> ## Formula for converting logit to probabilities 
> ## Source: http://www.statgun.com/tutorials/logistic-regression.html
> logit2prop <- function(l){exp(l)/(1+exp(l))}
> 
> ## Make up some data
> y <- rbinom(100, 1, 0.2)
> x <- rbinom(100, 1, 0.5)

The predictor x is a dichotomous variable:

> x
  [1] 0 1 1 1 1 1 0 1 0 1 0 1 0 0 1 1 1 0 1 1 1 1 1 1 0 0 1 1 1 1 0 0 1 0 0 1 0 0 0 1 1 1 0 1 1 1 1 
 [48] 1 1 0 1 0 0 0 0 1 0 0 1 1 0 0 0 0 1 0 0 1 1 1 0 0 1 0 0 0 0 1 1 0 1 0 1 0 1 1 1 1 1 0 1 0 0 0
 [95] 1 1 1 1 1 0

Second, estimate the intercept ($\beta_0$) and the slope ($\beta_1$). As you can see, the intercept is $\beta_0 = -0.8690$ and the slope is $\beta_1 = -1.0769 $.

> ## Run the model
> summary(glm.mod <- glm(y ~ x, family = "binomial"))

[...]

    Coefficients:
            Estimate Std. Error z value Pr(>|z|)   
(Intercept)  -0.8690     0.3304  -2.630  0.00854 **
x            -1.0769     0.5220  -2.063  0.03910 * 
---
Signif. codes:  0 ‘***’ 0.001 ‘**’ 0.01 ‘*’ 0.05 ‘.’ 0.1 ‘ ’ 1 

(Dispersion parameter for binomial family taken to be 1)

[...]

Third, R, like most statistical packages, can compute the fitted values, i.e. the probabilities. I will use these values as reference.

> ## Save the fitted values
> glm.fitted <- fitted(glm.mod)

Fourth, this step directly refers to your question: We have the raw data (here: $x$) and we have the coefficients ($\beta_0$ and $\beta_1$). Now, let's compute the logits and save these fitted values in glm.rcdm:

> ## "Raw data + coefficients" method (RDCM)
## logit = -0.8690 + (-1.0769) * x
glm.rdcm <- -0.8690 + (-1.0769)*x

The final step is a comparison of the fitted values based on R's fitted-function (glm.fitted) and my "hand-made" approach (logit2prop.glm.rdcm). My own function logit2prop (see first step) converts logits to probabilities:

> ## Compare fitted values and RDCM
> df <- data.frame(glm.fitted, logit2prop(glm.rdcm))
> df[10:25,]
> df[10:25,]
   glm.fitted logit2prop.glm.rdcm.
10  0.1250000            0.1250011
11  0.2954545            0.2954624
12  0.1250000            0.1250011
13  0.2954545            0.2954624
14  0.2954545            0.2954624
15  0.1250000            0.1250011
16  0.1250000            0.1250011
17  0.1250000            0.1250011
18  0.2954545            0.2954624
19  0.1250000            0.1250011
20  0.1250000            0.1250011
21  0.1250000            0.1250011
22  0.1250000            0.1250011
23  0.1250000            0.1250011
24  0.1250000            0.1250011
25  0.2954545            0.2954624
share|improve this answer
5  
Note that glm(y ~ x) does not give you a logistic regression, You have to set family=binomial(link="logit"). Note the output says Dispersion parameter for gaussian family, not binomial family. If you do it right, fitted(glm.mod) actually returns the estimated probabilities, not the logits. You get the logits with predict(glm.mod, type="link"). – caracal May 20 '11 at 13:18
Aua! I have fixed that. Thanks a lot, @caracal, for correcting me! This is really embarrassing (it is even more embarrassing as I have already given the correct answer in another SO thread). – Bernd Weiss May 20 '11 at 13:46
1  
the package arm has the function invlogit, which is your function logit2prop. – Manoel Galdino May 20 '11 at 17:41

The link function of a logistic model is $f: x \mapsto \log \tfrac{x}{1 - x}$. Its inverse is $g: x \mapsto \tfrac{\exp x}{1 + \exp x}$.

In a logistic model, the left-hand side is the logit of $\pi$, the probability of success:

$f(\pi) = \beta_0 + x_1 \beta_1 + x_2 \beta_2 + \ldots$

Therefore, if you want $\pi$ you need to evaluate $g$ at the right-hand side:

$\pi = g( \beta_0 + x_1 \beta_1 + x_2 \beta_2 + \ldots)$.

share|improve this answer
How about ordinal logistic regression? What would be the logic then? – user333 May 20 '11 at 22:22
@user333: Well... I haven't played much with ordinal logistic regression... but I think one uses the same link function. In any case, the logic is the same: inverse the link function to get the response variable... – ocram May 21 '11 at 5:30
yeah... but how do I know which probabilities are mapped to which target categories? – user333 May 21 '11 at 21:26
@user333, your question was about logistic regression, if you want answers about ordinal regression too, please add that to the question. – mpiktas May 27 '11 at 7:03

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.