Implementation of Logistic Regression
This lesson will provide an overview of logistic regression and the steps involved in its implementation.
We'll cover the following...
Quick overview of logistic regression
Machine learning generally involves predicting a quantitative outcome or a qualitative class. The former is commonly referred to as a regression problem. In the case of linear regression, this involves predicting a numeric outcome based on the input of continuous variables.
When predicting a qualitative outcome (class), the task is considered a classification problem. Examples of ...