Questions tagged [probit]

This refers generally to statistical procedures that utilize the probit function. The primary example of which is probit regression where the probit transformation of the parameter p of a binary response distribution is used as a link.

The probit function is the inverse standard normal cumulative distribution function. That is, it takes in a probability and outputs a z-score. One important use of the probit is as a link function for the binomial distribution in the Generalized Linear Model.

For GLMs, we motivate the probit link function as follows:

Instead of modeling the response $Y$ directly in terms of $X$, we can model it through a latent variable, $Z$.

$$Z = X'\beta - \epsilon$$

Where $\epsilon_i \sim F( \cdot)$, i.i.d from some distribution with cdf $F$. In binary regression, we could classify observations, $Y_i$ as class 1 if $Z \ge 0$ or class 0 otherwise. So

$$P(Y=1|x) = P(Z \ge 0 ) = P(X'\beta - \epsilon \ge 0)$$ $$=P(\epsilon \le X'\beta) = F(X'\beta)$$

When $F$ is a Normal distribution, then the expression above is $\Phi(X'\beta)$, corresponding to a probit regression.

'Probit' is short for probability unit. The idea was originally proposed in the 1930s and predates the (now more common) logistic function.

369 questions
354
votes
12 answers

Difference between logit and probit models

What is the difference between Logit and Probit model? I'm more interested here in knowing when to use logistic regression, and when to use Probit. If there is any literature which defines it using R, that would be helpful as well.
Beta
  • 5,784
  • 9
  • 33
  • 44
22
votes
1 answer

Latent variable interpretation of generalized linear models (GLMs)

Short version: We know that logistic regression and probit regression can be interpreted as involving a continuous latent variable that gets discretized according to some fixed threshold prior to observation. Is a similar latent variable…
16
votes
3 answers

Probit two-stage least squares (2SLS)

I was told that it's possible to run a two-stage IV regression where the first stage is a probit and the second stage is an OLS. Is it possible to use 2SLS if the first stage is a probit but the second stage is a probit/poisson model?
user3543169
  • 165
  • 1
  • 1
  • 5
16
votes
1 answer

2SLS but second stage Probit

I am trying to use instrumental variables analysis to infer causality with observational data. I have come across a two-stage least squares (2SLS) regression which is likely to address the endogeneity issue in my research. However, I would like to…
Veronica
  • 163
  • 1
  • 4
14
votes
2 answers

Binary Models (Probit and Logit) with a Logarithmic Offset

Does anyone have a derivation of how an offset works in binary models like probit and logit? In my problem, the follow-up window can vary in length. Suppose patients get a prophylactic shot as treatment. The shot happens at different times, so if…
dimitriy
  • 31,081
  • 5
  • 63
  • 138
14
votes
3 answers

How to test for simultaneous equality of choosen coefficients in logit or probit model?

How to test for simultaneous equality of choosen coefficients in logit or probit model ? What is the standard approach and what is the state of art approach ?
Qbik
  • 1,457
  • 2
  • 17
  • 27
12
votes
2 answers

How does "stepwise regression" work?

I used the following R code to fit a probit model: p1 <- glm(natijeh ~ ., family=binomial(probit), data=data1) stepwise(p1, direction='backward/forward', criterion='BIC') I want to know what does stepwise and backward/forward do exactly and how…
Mahmoud
  • 383
  • 1
  • 2
  • 14
12
votes
3 answers

Marginal effect of Probit and Logit model

Can anyone explain how to compute the marginal effect of Probit and Logit model in layman's terms? I am new to statistics and I am confused about these two models.
Mark
  • 153
  • 1
  • 1
  • 5
11
votes
1 answer

Consistency of 2SLS with Binary endogenous variable

I have read that 2SLS estimator is still consistent even with binary endogenous variable (http://www.stata.com/statalist/archive/2004-07/msg00699.html). In the first stage, a probit treatment model will be run instead of a linear model. Is there…
Vincent
  • 307
  • 1
  • 2
  • 8
10
votes
3 answers

Alternatives to the multinomial logit model

I am trying to estimate a model of occupational choice with three choices. Are there any alternatives to using the multinomial logistic regression when handling such unordered categorical outcomes? When dealing with binary dependent variables there…
Thor
  • 101
  • 1
  • 3
10
votes
1 answer

Deriving likelihood function for IV-probit

So I have a binary model where $y_1^*$ is the latent unobserved variable and $y_1 \in \{0,1\}$ the observed. $y_2$ determines $y_1$ and $z_2$ is thus my instrument. So in short the model is. \begin{eqnarray} y_1^*&=& \delta_1 z_1 + \alpha_1 y_2…
Cederlöf
  • 137
  • 7
10
votes
4 answers

Does non-stationarity in logit/probit matter?

I would like to ask - I am using logit to investigate, if some variables improve the risk of currency crises. I have yearly data from 1980 for lots of countries (unbalanced panel), dummy variable is 1 if currency crises started (according to my…
Jirka
  • 101
  • 1
  • 4
9
votes
1 answer

Choose best model between logit, probit and nls

I'm analyzing a certain dataset, and I need to understand how to choose the best model that fits my data. I'm using R. An example of data I have is the following: corr <- c(0, 0, 10, 50, 70, 100, 100, 100, 90, 100, 100) These numbers correspond to…
Tommaso
  • 563
  • 2
  • 5
  • 17
8
votes
2 answers

Assumptions of the Ordered Probit model

What are the assumptions of an ordered probit model that must be met? What are the tests to check these?
fkb1991
  • 95
  • 1
  • 4
8
votes
2 answers

Estimate multinomial probit model with mlogit (R package)

From the document and help, probit model is supported by mlogit. But when I tried it with these R scripts, the estimation takes much longer time to run (than the logit verion) and the result is quite a bit different as well (argument probit=FALSE).…
LmW.
  • 223
  • 2
  • 8
1
2 3
24 25