Logistic regression is a regression analysis that predicts the probability of an outcome that can only have two values. A logistic regression produces a logistic curve, which is limited to values between 0 and 1. Logistic regression models the probability that each input belongs to a particular category. For this particular notebook we will try to predict whether a customer will churn using a Logistic Regression.
- https://beckernick.github.io/logistic-regression-from-scratch/
- https://medium.com/@martinpella/logistic-regression-from-scratch-in-python-124c5636b8ac
- https://www.jmp.com/support/help/en/15.2/index.shtml#page/jmp/logistic-regression-models.shtml
- https://www.kaggle.com/jeppbautista/logistic-regression-from-scratch-python
- http://www2.stat.duke.edu/~banks/111-lectures.dir/lect10.pdf
- https://machinelearningmastery.com/implement-logistic-regression-stochastic-gradient-descent-scratch-python/
- https://towardsdatascience.com/logistic-regression-from-scratch-69db4f587e17
- https://machinelearningmastery.com/logistic-regression-for-machine-learning/
- https://ml-cheatsheet.readthedocs.io/en/latest/logistic_regression.html
- https://realpython.com/logistic-regression-python/
- https://www.askpython.com/python/examples/logistic-regression-from-scratch
- https://medium.com/analytics-vidhya/ml-from-scratch-logistic-regression-gradient-descent-63b6beb1664c