Logistic Regression - Walk through using Social Network Ads dataset
Classification techniques are very important to understand in the field of machine learning and data mining applications. Logistic regression is very useful regression methodology for solving classification problems, particularly the binary classification problems. In such problems, the target will take only two possible classes. However, Logistic regression can also be applied for Multinomial classification where the target can take more than two classes. We know that Linear equation consisting X1 to Xn input features can be represented as f(x) = β 0X0 + β1X1 + β2X2 + ....... + βnXn where β1, β2, β3 .... βn are co-efficients of respective input feature, β 0 is constant factor and f(x) is our predicted target feature. Logistic regression is e...