Overview
Logistic Regression is a popular classification algorithm used to predict a binary outcome.
In this case study, get an introduction to logistic regression without relying on Python’s sci-kit library.
There are various metrics to evaluate a logistic regression model, such as confusion matrix, AUC-ROC curve, etc.
In this notebook, we aim to create a
Read More