- Linear regression estimates the relationship between continuous dependent and independent variables using a best fit line. Multiple linear regression uses multiple independent variables while simple linear regression uses one.
- Logistic regression applies a sigmoid function to linear regression when the dependent variable is binary. It handles non-linear relationships between variables.
- Polynomial regression uses higher powers of independent variables which may lead to overfitting so model fit must be checked.
- Stepwise regression automatically selects independent variables using forward selection or backward elimination. Ridge and lasso regression address multicollinearity through regularization. Elastic net is a hybrid of ridge and lasso.
- Classification algorithms include k-nearest neighbors, decision trees, support vector machines, and naive Bayes which use probability