0 votes
in Data Science by
How is logistic regression done?

2 Answers

0 votes
by
Logistic regression measures the relationship between the dependent variable (our label of what we want to predict) and one or more independent variables (our features) by estimating probability using its underlying logistic function (sigmoid).
0 votes
by

Logistic regression measures the relationship between the dependent variable (our label of what we want to predict) and one or more independent variables (our features) by estimating probability using its underlying logistic function (sigmoid).

The image shown below depicts how logistic regression works:

logistic-regression

The formula and graph for the sigmoid function are as shown:

sigmoid-function

...