NYC Data Science Academy| Blog
Bootcamps
Lifetime Job Support Available Financing Available
Bootcamps
Data Science with Machine Learning Flagship ๐Ÿ† Data Analytics Bootcamp Artificial Intelligence Bootcamp New Release ๐ŸŽ‰
Free Lesson
Intro to Data Science New Release ๐ŸŽ‰
Find Inspiration
Find Alumni with Similar Background
Job Outlook
Occupational Outlook Graduate Outcomes Must See ๐Ÿ”ฅ
Alumni
Success Stories Testimonials Alumni Directory Alumni Exclusive Study Program
Courses
View Bundled Courses
Financing Available
Bootcamp Prep Popular ๐Ÿ”ฅ Data Science Mastery Data Science Launchpad with Python View AI Courses Generative AI for Everyone New ๐ŸŽ‰ Generative AI for Finance New ๐ŸŽ‰ Generative AI for Marketing New ๐ŸŽ‰
Bundle Up
Learn More and Save More
Combination of data science courses.
View Data Science Courses
Beginner
Introductory Python
Intermediate
Data Science Python: Data Analysis and Visualization Popular ๐Ÿ”ฅ Data Science R: Data Analysis and Visualization
Advanced
Data Science Python: Machine Learning Popular ๐Ÿ”ฅ Data Science R: Machine Learning Designing and Implementing Production MLOps New ๐ŸŽ‰ Natural Language Processing for Production (NLP) New ๐ŸŽ‰
Find Inspiration
Get Course Recommendation Must Try ๐Ÿ’Ž An Ultimate Guide to Become a Data Scientist
For Companies
For Companies
Corporate Offerings Hiring Partners Candidate Portfolio Hire Our Graduates
Students Work
Students Work
All Posts Capstone Data Visualization Machine Learning Python Projects R Projects
Tutorials
About
About
About Us Accreditation Contact Us Join Us FAQ Webinars Subscription An Ultimate Guide to
Become a Data Scientist
    Login
NYC Data Science Acedemy
Bootcamps
Courses
Students Work
About
Bootcamps
Bootcamps
Data Science with Machine Learning Flagship
Data Analytics Bootcamp
Artificial Intelligence Bootcamp New Release ๐ŸŽ‰
Free Lessons
Intro to Data Science New Release ๐ŸŽ‰
Find Inspiration
Find Alumni with Similar Background
Job Outlook
Occupational Outlook
Graduate Outcomes Must See ๐Ÿ”ฅ
Alumni
Success Stories
Testimonials
Alumni Directory
Alumni Exclusive Study Program
Courses
Bundles
financing available
View All Bundles
Bootcamp Prep
Data Science Mastery
Data Science Launchpad with Python NEW!
View AI Courses
Generative AI for Everyone
Generative AI for Finance
Generative AI for Marketing
View Data Science Courses
View All Professional Development Courses
Beginner
Introductory Python
Intermediate
Python: Data Analysis and Visualization
R: Data Analysis and Visualization
Advanced
Python: Machine Learning
R: Machine Learning
Designing and Implementing Production MLOps
Natural Language Processing for Production (NLP)
For Companies
Corporate Offerings
Hiring Partners
Candidate Portfolio
Hire Our Graduates
Students Work
All Posts
Capstone
Data Visualization
Machine Learning
Python Projects
R Projects
About
Accreditation
About Us
Contact Us
Join Us
FAQ
Webinars
Subscription
An Ultimate Guide to Become a Data Scientist
Tutorials
Data Analytics
  • Learn Pandas
  • Learn NumPy
  • Learn SciPy
  • Learn Matplotlib
Machine Learning
  • Boosting
  • Random Forest
  • Linear Regression
  • Decision Tree
  • PCA
Interview by Companies
  • JPMC
  • Google
  • Facebook
Artificial Intelligence
  • Learn Generative AI
  • Learn ChatGPT-3.5
  • Learn ChatGPT-4
  • Learn Google Bard
Coding
  • Learn Python
  • Learn SQL
  • Learn MySQL
  • Learn NoSQL
  • Learn PySpark
  • Learn PyTorch
Interview Questions
  • Python Hard
  • R Easy
  • R Hard
  • SQL Easy
  • SQL Hard
  • Python Easy
Data Science Blog > Big Data > Big Data Analytics: from Impressions to Clicks

Big Data Analytics: from Impressions to Clicks

Gwendolyn Fernandez, Dimitri Liakhovitski and Andrew Brainerd
Posted on Dec 14, 2017


Post Content:

  • About the Project
  • Data Exploration Steps
  • Data Exploration: Duplication in Clicks Dataset
  • Merging Impressions & Clicks for Modeling
  • Predictors of Clicks & Feature Engineering
  • Exploring Bivariate Relationships with Clicks
  • Addressing Imbalanced Classes on the Target Variable
  • Predicting Clicks: Logistic Regression
  • Predicting Clicks: Random Forest
  • Predicting Clicks: Feature Importances
  • Future Research Directions

Project Background & Objectives:

We were very excited about this project because it gave us an opportunity to finally deal with the "BIG DATA"!

Inputs we worked with:

A digital company involved with placing bids for clients' online ads provided us with the following:

  • three datasets on an Amazon Simple Storage Service (S3), each representing a sample of September 2016...
    • bid requests they placed
    • impressions from those bid requests, and
    • clicks for those impressions
  • Open RTB API Specification Document

Objectives:

  • Explore the datasets and report anything noteworthy
  • In the Impressions dataset: identify potential predictors of clicks and engineer features for predictive modeling
  • Predict Clicks vs. non-clicks using Machine Learning algorithms in Apache Spark (Python)

Tools at our disposal:

  • Data storage with AWS: S3
  • Data processing: Spark based on a 16-core AWS cluster)
  • Databricks platform

 

Project Workflow:


Data Exploration Steps:

  • Working through a sample of data locally, on our laptops, we sought to understand each variable within the three datasets and how those datasets related to each other.
  • Later, we repeated this step using Spark on the cluster.
  • We looked at:
    1. The meaning of each variable
    2. How likely each variable was to be a predictor of clicks
    3. Percent of missing values on each variable
    4. For categorical variables: Number of levels and their incidences
    5. For numeric variables: distribution
    6. Relationship between each potential predictor and clicks (vs. non-clicks)

 

We found duplications in Clicks dataset: Certain ads were clicked on multiple times by the same user!

  • Found no unique row ID in Clicks nor in the Impressions dataset
  • Our client company informed us that a combination of โ€˜impIdโ€™ and โ€˜dimensionsโ€™ should provide a unique row identifier
  • However, we still found duplicate combinations, i.e.,  multiple clicks per impression on a single occasion (i.e., one impression for a specific user)
  • Most duplicates were due to multiple clicks happening within a very short amount of time (even a few seconds)

 

We defined as โ€œabnormalโ€ 5 or more clicks per impression occasion and take a look at those cases

122 impId/dimensions combinations has more than 5 clicks per impression (0.025% of all impId/dimensions combinations in Clicks)

We took a closer look at them...

Of 27 ads with multiple clicks per impression, 14 had multiple clicks on more than 1 occasion.

Ad sizes 320x480 & 300x250 were most likely to had multiple clicks on many occasions - despite their lower share in Clicks data (share = proportion of rows for a given Ad size).

Of 15 campaigns with multiple clicks per impression, 9 had multiple clicks on more than 1 occasion - not in line with their share.

3rd party videos were much more likely to have multiple clicks per impression, despite their low share.

Toyota.com, for example, had experienced much larger number of multiple clicks per impressions than its overall share would dictate.


Merging Impressions & Clicks for Modeling

Merging Steps:

  1. Impressions containing predictors, we needed to add click/no click information from Clicks โ†’ we created a new column click_status in Clicks, filled with 1s
  2. We de-duplicated both Impressions (based on dimensions and auctionId) and Clicks (based on dimensions and impId) and created a new column dim_id in both data sets (based on dimensions and auctionId/impId)
  3. We merged Impressions and Clicks based on dim_id and filled all NAs in click_status with zeros

Now, our new column click_status in Impressions could be used as a target variable for predictions (1 = click, 0 = no click)

 

Dropping Rows:

  • Originally, our Impressions dataset had ~300 million rows
  • After de-duplication based on Dimensions and AuctionId, Impressions had ~294 million rows
  • We decided to exclude non-US countries; after they were dropped, Impressions had ~266 million rows
  • Upon merging Impressions & Clicks, we discovered that some ads had no clicks at all! Apparently, it was because the dataset we received from our client was a sample. We decided to drop the ads without any clicks. After dropping all records for the ads without clicks, Impressions had ~ 70 million rows
  • We also dropped ~2% of rows with unknown location and ended up with ~ 69 million rows

Predictors of Clicks and Feature Engineering

The table below shows columns we decided to use as predictors of clicks, % of Missing values (NAs) for each of them, # of levels and how we recoded the columns for modeling.

The following columns had no missing values and were used as is: Ad Size (7 levels), Ad Type (3 levels), Device Type (4 levels), Exchange (4 levels), Venue Type (4 levels), and Target Group (1,200+ levels).


Exploring Bivariate Relationships with Clicks

Several graphs below show the results of our exploratory data analysis devoted to the bivariate relationship between predictors and clicks. For each predictor, we first show its levels and their incidences and then % of clicks for each level.

Incidence & Relationship with Clicks: Gender

Looks like Males are more frequent โ€˜clickersโ€™.


 

Incidence & Relationship with Clicks: Carrier

Clicks seem to be somewhat less frequent for โ€˜US Cellularโ€ and some minor carriers (fall under โ€œunknownโ€)

Incidence and Relationships with Clicks: Ad Size

Larger ads are clicked on relatively more frequently.

 

Incidence Type and Relationship with Clicks: Ad Type

3rd Party Video ads are clicked on relatively more frequently.

Incidence Type and Relationship with Clicks: Device Type

PC users seem to be less generous with their clicks.

Incidence Type and Relationship with Clicks: Exchange

Ads purchased on Rubicon seem to attract fewer clicks.

Incidence Type and Relationship with Clicks: Venue Type

Ads shown on apps seem to attract more clicks than those shown on websites.

Incidence Type and Relationship with Clicks: State

Relative frequency of clicks is different from state to state.

Incidence Type and Relationship with Clicks: URL

Relative frequency of clicks is different from url to url.

Incidence Type and Relationship with Clicks: Hour of Day

Looks like people are less likely to click on ads in the morning.

Incidence Type and Relationship with Clicks: Day of Week

Looks like on Friday people have better things to do than clicking on ads!


Addressing Imbalanced Classes on the Target Variable: Too Few Clicks

Our target variable (clicks) had imbalanced classes: only ~0.6% of all impressions were clicked on. We tried to address this issue by:

  1. Undersampling zeros: From ~69 million rows sample all impressions with clicks and only 2.5% of impressions without clicks:
    • Final training dataset: ~2.1 million impressions, of which ~419K with clicks and ~1.7 Mil without (~1:4 ratio)
  2. Running predictions with and without class weights:
    • rows with clicks get a weight of 0.8
    • rows without clicks get a weight of 0.2

 


Predicting Clicks using Logistic Regression

Predictors used & in what form:

  • Ad Size (categorical)
  • Ad Type (categorical)
  • Device Type (categorical)
  • Exchange (categorical)
  • Gender (categorical)
  • Venue Type (categorical)
  • State (categorical)
  • Hour of the day (categorical)
  • Day of the week (categorical)
  • Hour/day interaction (categorical)
  • Url (categorical)
  • Age group (categorical)
  • 15 dummy variables for top IAB categories (numeric)

Pipeline in Spark included the following:

  • applying StringIndexer to every categorical (string) variable to label encode it;
  • applying OneHoteEncoder to every label-encoded variable to create dummies for it.

15 IAB dummies were fed into the model as is.

All predictors were then standardized by default by LogisticRegression procedure (imported from pyspark.ml.classification)

 

Logistic Regression models tried & their diagnostics (for Test data): Ridge w/o regularization predicted best

The table below shows the diagnostics for several models we've run. Each of them took a long time to run and our attempts at running parameter grid search using cross-validation failed because the Amazon cluster we used was not large enough.

Area uROC stands for "area under Receiver Operating Characteristic Curve"

Area uPR stands for "area under Precision/Recall Curve"

We tried to run the models with and without case weights. We discovered that using class weights* is analogous to using no weights and then predicting clicks/non-clicks using a probability threshold that maximizes F1 measure: It raises Recall but reduces Precision & Accuracy.

 

Logistic Regression takeaways:

  • Non-regularized Logistic Regression performed best - probably thanks to the large sample size
  • The overall predictive power of our models could clearly be improved
  • Additional feature engineering seemed warranted:
    • Inclusion of categories with lower incidence
    • Building additional columns for interaction between variables
  • Inclusion of additional predictors, especially those related to user characteristics might help

Predicting Clicks using Random Forest

Predictors used & in what form:

  • Ad Size (categorical)
  • Ad Type (categorical)
  • Device Type (categorical)
  • Exchange (categorical)
  • Gender (categorical)
  • Venue Type (categorical)
  • State (categorical)
  • Hour of the day (categorical)
  • Day of the week (categorical)
  • Hour/day interaction (categorical)
  • Url (categorical)
  • Age (numeric - where missing value were coded as -999)
  • Target group (categorical)
  • 15 dummy variables for top IAB categories (numeric)
  • Latitude & Longitude (numeric)

All categorical variables were label encoded using Sparkโ€™s StringIndexer. The encoded categoricals were then fed to the random forest classifier along with the unaltered numeric variables.

 

Random forest models tried & their diagnostics:

We did not have much time and each model took a long time to run. This is why we only ran a few Random Forest models. For the last model in the table below our several attempts to produce an accuracy table timed out, so that we are not reporting Accuracy, Precision, and Recall for it.

 

Random Forest takeaways:

  • The overall predictive power of our Random Forest model was still not as high as desired
  • Random Forest models took much longer to run, but performed somewhat better than Logistic Regression models - probably due to:
    1. high sparseness of our hotdeck-encoded predictors which might have impacted negatively the quality of Logistic Regression
    2. Absence of Latitude and Longitude as predictors for Logistic Regression
  • The table below shows the results of the best Logistic Regression and Random Forest models:


Predictor Importance in Predicting Clicks

Logistic Regression (Ridge): Usersโ€™ โ€œTarget groupโ€ was the most important predictor of clicks

  • User characteristics were the most important predictors of clicks;
  • Users were more likely to click on videos;
  • Users on PCs and Tablets were less likely to click on ads;
  • Style & Fashion ads were clicked on more often and Health & Fitness ads - less often.

Top Positive Regression Coefficients for Logistic Regression:

  • Top 30 positive coefficients: Target Group dummies
  • Coefficient 31: State of Virginia dummy
  • Coefficients 32-43: Target Group dummies
  • Coefficient 44: ad type โ€œ3rd party videoโ€ dummy
  • IAB18 (Style & Fashion) has the highest positive coefficient among IAB categories tested

Top Negative Regression Coefficients for Logistic Regression:

  • Top 8 negative coefficients: Target Group dummies
  • Coefficient 9: device type โ€œPersonal Computerโ€ dummy
  • Coefficients 10-36: Target Group dummies
  • Coefficient 37: Washington DC dummy
  • Coefficients 38-41: Target Group dummies
  • Coefficient 42: device type โ€œMobile/Tabletโ€ dummy
  • IAB7 (Health & Fitness) has the highest negative coefficient among IAB categories tested

 

Predictor Importance: Random Forest

Predictor importance results from Random Forest were partially in line with logistic regressionโ€™s findings: Target group (with 1200+ levels) was the most important predictor.

The top predictors were:

Predictor & Importance Score (the importance scores for all predictors sum up to 100)

  • Target group,  .367
  • Ad size, .121
  • Landing page url, .104
  • Exchange, .070
  • Ad type, .057
  • Carrier, .041
  • IAB24 - โ€œUncategorizedโ€, .035
  • Hour of day, .026
  • Age, .024
  • IAB14 - โ€œSocietyโ€, .023

Future Research Directions

  • Consider creating dummies for more IAB categories and carriers, not just the highest incidence ones.
  • Consider including additional device characteristics (e.g., we have not used device make & model).
  • Consider building geographical clusters based on latitude/longitude - esp. when the right algorithms are implemented in Spark.
  • Consider importing additional information - from BidRequests - as additional predictors of clicks.
  • Consider using a larger cluster: our cluster was shared by 15 people and was too small for:
    • merging all bidrequests with impressions and clicks, and
    • running Cross-Validation

About Authors

Gwendolyn Fernandez

View all posts by Gwendolyn Fernandez >

Dimitri Liakhovitski

I am a Data Scientist at GfK, one of the largest Market Research provider in the world. I am passionate about applying my expertise in Data Science, Statistics, Machine Learning, and Applied Psychology to real world problems. I...
View all posts by Dimitri Liakhovitski >

Andrew Brainerd

View all posts by Andrew Brainerd >

Related Articles

Machine Learning
Accurately Predicting House Prices and Improving Client Experience with Machine Learning
Big Data
Data Driven Rebalancing of Citi Bike Operations
Python
Data Analysis on The Effect of Inflation on Primary Assets
Big Data
House Price Prediction with Creative Feature Engineering and Advanced Regression Techniques
Big Data
Data Visualization on under-rated hiking destinations

Leave a Comment

Cancel reply

You must be logged in to post a comment.

No comments found.

View Posts by Categories

All Posts 2399 posts
AI 7 posts
AI Agent 2 posts
AI-based hotel recommendation 1 posts
AIForGood 1 posts
Alumni 60 posts
Animated Maps 1 posts
APIs 41 posts
Artificial Intelligence 2 posts
Artificial Intelligence 2 posts
AWS 13 posts
Banking 1 posts
Big Data 50 posts
Branch Analysis 1 posts
Capstone 206 posts
Career Education 7 posts
CLIP 1 posts
Community 72 posts
Congestion Zone 1 posts
Content Recommendation 1 posts
Cosine SImilarity 1 posts
Data Analysis 5 posts
Data Engineering 1 posts
Data Engineering 3 posts
Data Science 7 posts
Data Science News and Sharing 73 posts
Data Visualization 324 posts
Events 5 posts
Featured 37 posts
Function calling 1 posts
FutureTech 1 posts
Generative AI 5 posts
Hadoop 13 posts
Image Classification 1 posts
Innovation 2 posts
Kmeans Cluster 1 posts
LLM 6 posts
Machine Learning 364 posts
Marketing 1 posts
Meetup 144 posts
MLOPs 1 posts
Model Deployment 1 posts
Nagamas69 1 posts
NLP 1 posts
OpenAI 5 posts
OpenNYC Data 1 posts
pySpark 1 posts
Python 16 posts
Python 458 posts
Python data analysis 4 posts
Python Shiny 2 posts
R 404 posts
R Data Analysis 1 posts
R Shiny 560 posts
R Visualization 445 posts
RAG 1 posts
RoBERTa 1 posts
semantic rearch 2 posts
Spark 17 posts
SQL 1 posts
Streamlit 2 posts
Student Works 1687 posts
Tableau 12 posts
TensorFlow 3 posts
Traffic 1 posts
User Preference Modeling 1 posts
Vector database 2 posts
Web Scraping 483 posts
wukong138 1 posts

Our Recent Popular Posts

AI 4 AI: ChatGPT Unifies My Blog Posts
by Vinod Chugani
Dec 18, 2022
Meet Your Machine Learning Mentors: Kyle Gallatin
by Vivian Zhang
Nov 4, 2020
NICU Admissions and CCHD: Predicting Based on Data Analysis
by Paul Lee, Aron Berke, Bee Kim, Bettina Meier and Ira Villar
Jan 7, 2020

View Posts by Tags

#python #trainwithnycdsa 2019 2020 Revenue 3-points agriculture air quality airbnb airline alcohol Alex Baransky algorithm alumni Alumni Interview Alumni Reviews Alumni Spotlight alumni story Alumnus ames dataset ames housing dataset apartment rent API Application artist aws bank loans beautiful soup Best Bootcamp Best Data Science 2019 Best Data Science Bootcamp Best Data Science Bootcamp 2020 Best Ranked Big Data Book Launch Book-Signing bootcamp Bootcamp Alumni Bootcamp Prep boston safety Bundles cake recipe California Cancer Research capstone car price Career Career Day ChatGPT citibike classic cars classpass clustering Coding Course Demo Course Report covid 19 credit credit card crime frequency crops D3.js data data analysis Data Analyst data analytics data for tripadvisor reviews data science Data Science Academy Data Science Bootcamp Data science jobs Data Science Reviews Data Scientist Data Scientist Jobs data visualization database Deep Learning Demo Day Discount disney dplyr drug data e-commerce economy employee employee burnout employer networking environment feature engineering Finance Financial Data Science fitness studio Flask flight delay football gbm Get Hired ggplot2 googleVis H20 Hadoop hallmark holiday movie happiness healthcare frauds higgs boson Hiring hiring partner events Hiring Partners hotels housing housing data housing predictions housing price hy-vee Income industry Industry Experts Injuries Instructor Blog Instructor Interview insurance italki Job Job Placement Jobs Jon Krohn JP Morgan Chase Kaggle Kickstarter las vegas airport lasso regression Lead Data Scienctist Lead Data Scientist leaflet league linear regression Logistic Regression machine learning Maps market matplotlib Medical Research Meet the team meetup methal health miami beach movie music Napoli NBA netflix Networking neural network Neural networks New Courses NHL nlp NYC NYC Data Science nyc data science academy NYC Open Data nyc property NYCDSA NYCDSA Alumni Online Online Bootcamp Online Training Open Data painter pandas Part-time performance phoenix pollutants Portfolio Development precision measurement prediction Prework Programming public safety PwC python Python Data Analysis python machine learning python scrapy python web scraping python webscraping Python Workshop R R Data Analysis R language R Programming R Shiny r studio R Visualization R Workshop R-bloggers random forest Ranking recommendation recommendation system regression Remote remote data science bootcamp Scrapy scrapy visualization seaborn seafood type Selenium sentiment analysis sentiment classification Shiny Shiny Dashboard Spark Special Special Summer Sports statistics streaming Student Interview Student Showcase SVM Switchup Tableau teachers team team performance TensorFlow Testimonial tf-idf Top Data Science Bootcamp Top manufacturing companies Transfers tweets twitter videos visualization wallstreet wallstreetbets web scraping Weekend Course What to expect whiskey whiskeyadvocate wildfire word cloud word2vec XGBoost yelp youtube trending ZORI

NYC Data Science Academy

NYC Data Science Academy teaches data science, trains companies and their employees to better profit from data, excels at big data project consulting, and connects trained Data Scientists to our industry.

NYC Data Science Academy is licensed by New York State Education Department.

Get detailed curriculum information about our
amazing bootcamp!

Please enter a valid email address
Sign up completed. Thank you!

Offerings

  • HOME
  • DATA SCIENCE BOOTCAMP
  • ONLINE DATA SCIENCE BOOTCAMP
  • Professional Development Courses
  • CORPORATE OFFERINGS
  • HIRING PARTNERS
  • About

  • About Us
  • Alumni
  • Blog
  • FAQ
  • Contact Us
  • Refund Policy
  • Join Us
  • SOCIAL MEDIA

    ยฉ 2025 NYC Data Science Academy
    All rights reserved. | Site Map
    Privacy Policy | Terms of Service
    Bootcamp Application