What are two models you can use for classification problems, and when would you use one instead of the other?
What are two models you can use for classification problems, and when would you use one instead of the other?
Answer: Logistic regression and Random Forests are two models that can be used for classification. Often I would try both models and see which one performs better. If the output of the model must be easily interpretable, I would use the logistic regression over the random forest because the model outputs coefficients that I can interpret.