Model binary outcomes with clear inputs and outputs. Test thresholds, coefficients, and probabilities with ease. Turn logistic patterns into practical decisions using understandable metrics.
Use estimated coefficients from a binary logistic model. Then enter predictor values for one observation to calculate probability, odds, class, and related diagnostics.
This example shows how entered coefficients and predictors can estimate the probability of a binary event such as churn, default, approval, or disease status.
| Case | β0 | β1 | X1 | β2 | X2 | β3 | X3 | Probability | Predicted Class |
|---|---|---|---|---|---|---|---|---|---|
| 1 | -4.20 | 0.06 | 45 | 1.15 | 1 | -0.80 | 2 | 12.46% | 0 |
| 2 | -4.20 | 0.06 | 58 | 1.15 | 1 | -0.80 | 0 | 40.13% | 0 |
| 3 | -4.20 | 0.06 | 68 | 1.15 | 1 | -0.80 | 0 | 55.52% | 1 |
| 4 | -4.20 | 0.06 | 50 | 1.15 | 0 | -0.80 | 5 | 1.10% | 0 |
z = β0 + β1X1 + β2X2 + β3X3 + β4X4 + β5X5
This combines the intercept and each coefficient multiplied by its predictor value.
p = 1 / (1 + e-z)
This transforms the logit into a probability between 0 and 1.
Odds = ez
Odds show how many times more likely the event is than the non-event.
OR = eβi
An odds ratio above 1 increases event odds. Below 1 decreases event odds.
ME = p(1 − p)βi
This approximates how a one-unit increase in a predictor changes probability at the current observation.
Residual = y − p
Log Loss = −[y ln(p) + (1 − y) ln(1 − p)]
Brier Score = (y − p)2
These require the actual outcome and help evaluate one prediction.
It converts logistic regression coefficients and predictor values into a predicted probability, odds, class decision, and several practical diagnostic measures for one observation.
No. It evaluates predictions from coefficients you already estimated elsewhere. Enter your fitted intercept and coefficients, then score a new or existing case.
Probability is the chance of the event from 0 to 1. Odds compare event likelihood to non-event likelihood and are calculated as exp(logit).
The threshold decides when a probability becomes class 1. A threshold of 0.50 predicts an event only when the probability is at least 50%.
Odds ratios help interpret coefficients. A value above 1 increases event odds, while a value below 1 reduces them, holding other predictors constant.
A marginal effect estimates how much the predicted probability changes for a one-unit increase in a predictor at the current observation values.
Enter it when you want prediction error metrics like residual, log loss, Brier score, and whether the chosen threshold classified the case correctly.
Yes. Leave unused coefficients and predictor values as zero. The calculator will ignore their contribution and still compute the final probability correctly.
Important Note: All the Calculators listed in this site are for educational purpose only and we do not guarentee the accuracy of results. Please do consult with other sources as well.