Subhasish1315
Subhasish1315

Reputation: 978

Two-Class-Logistic VS Binary Logistic Regression

During a test project on Azure Machine Learning Studio I have some questions based on my understandings. In my project (in R) I have used Binary Logistic Regression, but in AML I found two Logistic regression Two-Class and MultiClass. So in that case I have used two-class Logistic regression. Am I Right in this case?

In another case during running glm() in R tool it perform Logistic regression and after summary(loreg Eqn) it provides the each variable's co-efficient & estimates.

From R I have the following output:

enter image description here

From AML after right-clicking Train Model and visualize:

enter image description here

The weight in the above Picture is the estimates, am I right (Dataset is diff)?

Upvotes: 0

Views: 715

Answers (1)

juvchan
juvchan

Reputation: 6255

For the first question, Two-Class Logistic Regression is the same as Binary Logistic Regression, so you're right in that case.

For your second question, no they're different.

Upvotes: 1

Related Questions