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 seaborn as sns
import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
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()
ad_data.info()
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'],kde=False,bins=30)
Create a jointplot showing Area Income versus Age.
sns.jointplot(y="Area Income",x="Age",data=ad_data)
ad_data.columns
Create a jointplot showing the kde distributions of Daily Time spent on site vs. Age.
sns.jointplot(kind="kde",y="Daily Time Spent on Site",x="Age",data=ad_data)
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)
Finally, create a pairplot with the hue defined by the 'Clicked on Ad' column feature.
sns.pairplot(ad_data,hue='Clicked on Ad')
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
from sklearn.linear_model import LogisticRegression
ad_data.head()
ad_data.drop(["Timestamp"],axis=1,inplace=True)
ad_data.drop(["Ad Topic Line","City","Country"],axis=1,inplace=True)
ad_data.columns
x=ad_data[['Daily Time Spent on Site', 'Age', 'Area Income',
'Daily Internet Usage', 'Male']]
y=ad_data["Clicked on Ad"]
from sklearn.model_selection import train_test_split
X_train, X_test, y_train, y_test = train_test_split(
... x, y, test_size=0.3, random_state=101)
logmodel=LogisticRegression()
logmodel
Train and fit a logistic regression model on the training set.
logmodel.fit(X_train,y_train)
Now predict values for the testing data.
predictions=logmodel.predict(X_test)
Create a classification report for the model.
from sklearn.metrics import classification_report
print(classification_report(y_test,predictions))
`