= Probit Model = A '''probit model''' is a linear regression method for a binary outcome. <> ---- == Design == A probit model is appropriate for fitting binary outcomes (i.e., 0 and 1) into a linear model (as '''''y''' = '''Xb'''''). The probit function is extremely similar to the [[Statistics/LogisticModel|logit function]]. See the following comparison, noting that red is logit and blue is probit. {{attachment:comp.png||width=300}} So refer to that document, and bear in mind that the important difference is that the [[Statistics/GeneralizedLinearModel#Design|link function]] is instead the c.d.f. of the [[Statistics/NormalDistribution|normal distribution]] (i.e., ''Φ(.)''). ---- == Description == Fitting a model with both [[Statistics/LogisticModel|logistic]] and probit regression will usually lead to the same interpretation either way. The important differences are in the theoretical foundations and in model interpretation. The [[Statistics/GeneralizedLinearModel#Design|link function]] here is the c.d.f. of the [[Statistics/NormalDistribution|normal distribution]], implying that the underlying outcome is continuous and normally-distributed, and then that the binary outcome of analysis is a categorization of the underlying outcome according to some threshold on the distribution. In some cases, this is ''exactly'' what has been done to collect data, i.e. classifying individuals between high and low income according to the population mean. A logistic regression has coefficients interpreted in terms of odds, whereas the coefficients don't have any inherent meaning in a probit regression. They are related however; the probit model will estimate coefficients about 1.8 times that of a logistic model. This goes back to the fact that a probit model assumes a [[Statistics/Variance|variance]] of 1 whereas a logistic model assumes a variance of ''π2/3''. See [[https://www.statalist.org/forums/forum/general-stata-discussion/general/1487013-probit-vs-logit-model?p=1487017#post1487017|this discussion]]. ---- CategoryRicottone CategoryRicottone