Home
Recent Q&A
Java
Cloud
JavaScript
Python
SQL
PHP
HTML
C++
Data Science
DBMS
Devops
Hadoop
Machine Learning
Azure
Blockchain
Devops
Ask a Question
Difference between Linear and Logistic Regression?
Home
Data Analytics
Difference between Linear and Logistic Regression?
0
votes
asked
Aug 14
in
Data Analytics
by
SakshiSharma
Difference between Linear and Logistic Regression?
linear
and
logistic
regression
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Aug 14
by
SakshiSharma
Two main difference are as follows -
Linear regression requires the dependent variable to be continuous i.e. numeric values (no categories or groups). While Binary logistic regression requires the dependent variable to be binary - two categories only (0/1). Multinomial or ordinary logistic regression can have dependent variable with more than two categories.
Linear regression is based on least square estimation which says regression coefficients should be chosen in such a way that it minimizes the sum of the squared distances of each observed response to its fitted value. While logistic regression is based on Maximum Likelihood Estimation which says coefficients should be chosen in such a way that it maximizes the Probability of Y given X (likelihood)
...