In this project we will be working with a fake advertising data set, indicating whether or not a particular internet user clicked on an Advertisement. We will try to create a model that will predict whether or not they will click on an ad based off the features of that user.
This data set contains the following features:
Import a few libraries you think you'll need (Or just import them as you go along!)
import pandas as pd
import matplotlib.pyplot as plt
import seaborn as sns
from sklearn.linear_model import LogisticRegression
from sklearn.model_selection import train_test_split
from sklearn.metrics import classification_report, confusion_matrix
%matplotlib inline
sns.set_style('whitegrid')
import warnings
warnings.filterwarnings('ignore')
Read in the advertising.csv file and set it to a data frame called ad_data.
ad_data = pd.read_csv('advertising.csv')
Check the head of ad_data
ad_data.head()
Use info and describe() on ad_data
ad_data.describe()
Let's use seaborn to explore the data!
Try recreating the plots shown below!
Create a histogram of the Age
sns.distplot(ad_data['Age'], bins = 30, kde = False, color = "steelblue", hist_kws = { "alpha" : 1 } )
Create a jointplot showing Area Income versus Age.
sns.jointplot(x = 'Age', y = 'Area Income', data = ad_data)
Create a jointplot showing the kde distributions of Daily Time spent on site vs. Age.
sns.jointplot(x = 'Age', y = 'Daily Time Spent on Site', data = ad_data, kind = 'kde', color = 'red')
Create a jointplot of 'Daily Time Spent on Site' vs. 'Daily Internet Usage'
sns.jointplot(x = 'Daily Time Spent on Site', y = 'Daily Internet Usage', data = ad_data, color = 'green')
Finally, create a pairplot with the hue defined by the 'Clicked on Ad' column feature.
sns.pairplot(ad_data, hue = 'Clicked on Ad', palette = 'bwr')
Now it's time to do a train test split, and train our model!
You'll have the freedom here to choose columns that you want to train on!
Split the data into training set and testing set using train_test_split
X = ad_data[['Daily Time Spent on Site','Daily Internet Usage']]
y = ad_data['Clicked on Ad']
X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.3, random_state=101)
Train and fit a logistic regression model on the training set.
logistic_model = LogisticRegression()
logistic_model.fit(X_train,y_train)
Now predict values for the testing data.
y_predict = logistic_model.predict(X_test)
Create a classification report for the model.
print(confusion_matrix(y_test, y_predict))
print(classification_report(y_test, y_predict))