Logistic Regression in R
Logistic Regression
Logistic regression is used for classification problems where the output variable is categorical.
r
glm(am ~ mpg, data=mtcars, family="binomial")
Next Tutorial: Decision Trees

