An open API service indexing awesome lists of open source software.

https://github.com/devroopsaha744/diabetes-prediction-using-logistic-regression-beginner-level-

This project is based on the diabetes prediction model using Logistic Regression.
https://github.com/devroopsaha744/diabetes-prediction-using-logistic-regression-beginner-level-

Last synced: 3 months ago
JSON representation

This project is based on the diabetes prediction model using Logistic Regression.

Awesome Lists containing this project

README

        

# Diabetes-Prediction-using-Logistic-Regression-beginner-level-
## Introduction
This project is based on the diabetes prediction model using Logistic Regression.

## Dataset
Here is the dataset I have used: [click here!](https://www.kaggle.com/datasets/mathchi/diabetes-data-set)

## Libraries used
[Numpy](https://numpy.org/)
[pandas](https://pandas.pydata.org/)
[Matplotlib](https://matplotlib.org/)
[seaborn](https://seaborn.pydata.org/)
[Scikit-learn](https://scikit-learn.org/stable/)

## ML algorithm used
Logistic Regression is a classification model mainly used for Binary classification of the Target Variable. It's use cases arises when the outcome is in the fomr of 'Yes'/'No' or 0/1, ie. when the Target variable is a categorical variable itself.

It uses Sigmoid fucntion which converts that maps any input between 0 or 1.

Linear regression method cannot be used for classification because outliers can affect the regression coefficients. That's why Logistic Regression is used, as the sigmoid fucntion transforms the best fitting line into to a S-type curve.