Logistic regression is one of the oldest and stable techniques that one can use for classification. Logistic regression, linear regression, and Poisson regression are all considered General Linear Models (GLM). However, in the case of logistic regression, the predicted value can only be 0, or 1. Fortunately, this corresponds with many use cases, such as whether or not a customer will leave, or whether or not a hurricane will appear. If you are already familiar with multiple linear regressions, logistic regression should be easier to understand, since you should already be familiar with concepts such as specifying multiple independent variables, and the use of mathematical functions, such as log and exp, which can smooth ...