In this project, we aim to predict the intention of online shoppers. We implemented the Logistic Regression to create our model and Linear Discriminant Analysis to create dimensionality reduction in the dataset using Python. The data contains the following columns: Administrative: Administrative Value Administrative_Duration: Duration in Administrative Page Informational: Informational Value Informational_Duration: Duration in Informational Page ProductRelated: Product Related Value ProductRelated_Duration: Duration in Product Related Page BounceRates: Bounce Rates of a web page ExitRates: Exit rate …
Logistic Regression is a Machine Learning classification algorithm that is used to predict the probability of a categorical dependent variable. In logistic regression, the dependent variable is a binary variable that contains data coded as 1 (yes, success, etc.) or 0 (no, failure, etc.). We use Logistic Regression To predict whether an email is spam (1) or not (0), Whether the tumor is malignant (1) or not (0), To predict whether a voice/face man (1) …