logit#
- scikitplot.experimental._cy_experimental.logit(x0)#
Compute the logit function, which is the inverse of the sigmoid function, for the input value
x0
.The logit function is defined as:
logit(x) = log(x / (1 - x))
It is commonly used in logistic regression and other statistical models to transform probabilities (ranging from 0 to 1) into real-valued numbers.