Questions tagged [probit]

This refers generally to statistical procedures that utilize the probit function. The primary example of this tag is probit regression where the probit transformation of the parameter p of a Bernoulli 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 = X^\top\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^\top\beta - \epsilon \ge 0)$$ $$=P(\epsilon \le X^\top\beta) = F(X^\top\beta)$$

When $F$ is a Normal cdf, then the expression above is $\Phi(X^\top\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.

388 questions
2
votes
0 answers

Probits used in LD_50 is the same as the Wikipedia's probit definition?

During my searches I've come to a strange position; The Probit definition in Wikipedia is simple; $$\operatorname{probit}(p) = \sqrt{2}\,\operatorname{erf}^{-1}(2p-1)$$ Then, I've come to a source that explains using Finley's book The probit $Y$ of…
kelalaka
  • 123
2
votes
1 answer

Can one estimate a probit regression using OLS? Or it has to be done with maximum likelihood?

Can one estimate a probit regression using OLS? Or it has to be done with maximum likelihood? One could take the inverse cumulative probability distribution function and calculate the probability, and then run OLS. Would that be a mistake or it can…
adrCoder
  • 483
2
votes
3 answers

"Incorrect" p-value during probit regression when probability of a response is zero

I am running a probit regression with glm. I got a non-significant value (p~0.98) for an interaction that other statistical methods suggested should be significant. Looking into it, I think it's because 1 of the cells had zero positive ("YES")…
Tiffany
  • 45
1
vote
0 answers

How to calculate the standard error of coefficient from probit regression analysis

folks. I try to get the standard errors of coefficients manually from probit regression analysis in R. These are 0.69012 and 0.03565 from the following R program. > binary_data id X1 Y 1 1 14 0 2 2 29 0 3 3 6 0 4 4 25 1 5 5 18 1 6 6…
1
vote
0 answers

Is there any other way to get LD50 for these cases when Probit does not yield results?

To determine a lethal dose 50 (LD50) (ie the dose or concentration of a compound that kills 50% of the insects) I have done a Probit regression. In some cases, the p square CHI is > 0.05 or the statistical programs for do Probit regression does not…
0
votes
2 answers

Coefficients in ordered probit model

Suppose I have $4$ ordinal variables and a single covariate ($\log_{10}(x)$). When I run an ordinal probit model, I get three threshold coefficients and one probit slope. Call the threshold coefficients $b_1, \dots,b_3$ and the probit slope $b_4$.…
0
votes
1 answer

Using probit regression coefficients to derive probabilities?

I'm reading a paper here that uses a Probit Regression. I'm not entirely familiar with how this works. But, I'm wondering if there's a way to use the coefficients from Table 3 to derive the probabilities indicated in Tables 4, 5 and 6. And, if so,…
jplank
  • 3
  • 3
0
votes
1 answer

Why is probit regression favouring the Gaussian distribution?

Probit regression is based on the model $P(Y=1 | X) = \Phi(X'\beta)$, where $\Phi$ is the standard normal cumulative distribution function (cdf). Would it make sense to replace $\Phi$ by another cdf? ADDED: If yes, is there any practical,…
polmath
  • 121