Logit function
In Brief:
An implementation of the Logit function
Language
Python
# 's
1def logit(x):
2 '''
3 Logit function, this can be a lambda
4 '''
5 return log(x / (1-x))
An implementation of the Logit function
Add a Comment