• Post category:StudyBullet-17
  • Reading time:5 mins read

Logistic Regression in Python - Credit Default Prediction
Learn key components of logistic regression and develop a logistic regression model using python

What you will learn

Know how to interpret logistic regression analysis output produced by python

Learn how to interpret the modeling results and present it to others

Understand about the key components of logistic regression

Explain logistic regression and its benefits

Description

There are different types of statistical, data mining and machine learning algorithms in Predictive Modeling. Each algorithm is used to address the specific needs of the business concern. So choosing the right algorithm for your business is a great task. Regression algorithm is one among them. Regression algorithm is used to forecast continuous data like credit scoring or predicting the next outcome of a time based event. For example regression algorithm can be used to predict the trend of a stock movement with its past prices.

Regression is a statistical method which helps to determine the relationship between one dependent variable and other independent variables. It explains how the dependent variable changes when one of the independent variable varies. It is also used to know which independent variable is related to the dependent variable and what is their relationship. Regression analysis is widely used in the field of prediction and forecasting. Regression analysis is an important component for modelling and analyzing data.

In the recent years many techniques have been developed to perform regression analysis. They are Linear regression, Logistic regression, Polynomial regression, Stepwise regression, Ridge regression, Lasso Regression and Elastic net regression.


Get Instant Notification of New Courses on our Telegram channel.


Logistic regression is also known as logit regression or logit model. This is used to find the probability of event success and event failure. Logistic regression determines the relationship between categorical dependent variable and one or more independent variables using a logistic function.

Logistic regression is used for predicting the probability of occurrence of an event by fitting the data to a logistic curve. Ordinary Least Squares on the other hand is an important computational problem that is used in applications when there is a need to use a linear mathematical model to measurements which are derived from the experiments. OLS takes various forms like Correlation, multiple regression, ANOVA and others. Logistic regression is most widely used in the field of medical science whereas OLS is mostly used in social sciences.

English
language

Content

Introduction

Introduction of Project

Project Steps and Files

Project Steps
Import Files

Data Preprocessing EDA

Data Preprocessing EDA Part 1
Data Preprocessing EDA Part 2
Data Preprocessing EDA Part 3
Data Preprocessing EDA Part 4
Exploratory Data Analysis
Splitting Data
Confusion Matrix
Confusion Matrix and ROC

Hyper Parameter Tuning

Hyper Parameter Tuning
Hyper Parameter Tuning Continue
More on Hyperparameter Tuning

Decision Tree

Decision Tree Theory and Steps
Decision Tree Theory and Steps Continue
Installation of Graph viz and Peoples
Decision Tree Code Explanation
Random Forest Code