Checkpoints
Create a new dataset
/ 20
Create a model and specify model options
/ 20
Evaluate classification model performance
/ 15
Improve model performance with Feature Engineering(Create second model)
/ 15
Improve model performance with Feature Engineering(Better predictive power)
/ 15
Predict which new visitors will come back and purchase
/ 15
Predict Visitor Purchases with a Classification Model in BigQuery ML
- GSP229
- Overview
- Setup and requirements
- Task 1. Explore ecommerce data
- Task 2. Identify an objective
- Task 3. Select features and create your training dataset
- Task 4. Create a BigQuery dataset to store models
- Task 5. Select a BigQuery ML model type and specify options
- Task 6. Evaluate classification model performance
- Task 7. Improve model performance with Feature Engineering
- Task 8. Predict which new visitors will come back and purchase
- Task 9. Analyze results and additional information
- Task 10. Test your knowledge
- Congratulations!
GSP229
Overview
BigQuery is Google's fully managed, NoOps, low cost analytics database. With BigQuery you can query terabytes and terabytes of data without having any infrastructure to manage or needing a database administrator. BigQuery uses SQL and can take advantage of the pay-as-you-go model. BigQuery allows you to focus on analyzing data to find meaningful insights.
BigQuery ML is a feature in BigQuery that data analysts can use to create, train, evaluate, and predict with machine learning models with minimal coding.
In this lab, you use a special ecommerce dataset that has millions of Google Analytics records for the Google Merchandise Store loaded into BigQuery. You use this data to create a classification (logistic regression) model in BigQuery ML that predicts customers' purchasing habits.
What you'll learn
In this lab, you learn how to perform the following tasks:
- Use BigQuery to find public datasets
- Query and explore the ecommerce dataset
- Create a training and evaluation dataset to be used for batch prediction
- Create a classification (logistic regression) model in BigQuery ML
- Evaluate and improve the performance of your machine learning model
- Predict and rank the probability that a visitor will make a purchase
Setup and requirements
Before you click the Start Lab button
Read these instructions. Labs are timed and you cannot pause them. The timer, which starts when you click Start Lab, shows how long Google Cloud resources will be made available to you.
This hands-on lab lets you do the lab activities yourself in a real cloud environment, not in a simulation or demo environment. It does so by giving you new, temporary credentials that you use to sign in and access Google Cloud for the duration of the lab.
To complete this lab, you need:
- Access to a standard internet browser (Chrome browser recommended).
- Time to complete the lab---remember, once you start, you cannot pause a lab.
How to start your lab and sign in to the Google Cloud console
-
Click the Start Lab button. If you need to pay for the lab, a pop-up opens for you to select your payment method. On the left is the Lab Details panel with the following:
- The Open Google Cloud console button
- Time remaining
- The temporary credentials that you must use for this lab
- Other information, if needed, to step through this lab
-
Click Open Google Cloud console (or right-click and select Open Link in Incognito Window if you are running the Chrome browser).
The lab spins up resources, and then opens another tab that shows the Sign in page.
Tip: Arrange the tabs in separate windows, side-by-side.
Note: If you see the Choose an account dialog, click Use Another Account. -
If necessary, copy the Username below and paste it into the Sign in dialog.
{{{user_0.username | "Username"}}} You can also find the Username in the Lab Details panel.
-
Click Next.
-
Copy the Password below and paste it into the Welcome dialog.
{{{user_0.password | "Password"}}} You can also find the Password in the Lab Details panel.
-
Click Next.
Important: You must use the credentials the lab provides you. Do not use your Google Cloud account credentials. Note: Using your own Google Cloud account for this lab may incur extra charges. -
Click through the subsequent pages:
- Accept the terms and conditions.
- Do not add recovery options or two-factor authentication (because this is a temporary account).
- Do not sign up for free trials.
After a few moments, the Google Cloud console opens in this tab.
Open the BigQuery console
- In the Google Cloud Console, select Navigation menu > BigQuery.
The Welcome to BigQuery in the Cloud Console message box opens. This message box provides a link to the quickstart guide and the release notes.
- Click Done.
The BigQuery console opens.
Access the course dataset
- In the Explorer pane, click + ADD.
The Add data
pane opens.
-
Click Star a project by name under Additional sources.
-
Enter
data-to-insights
and click Star.
Click on the below direct link to view the public data-to-insights project:
The field definitions for the data-to-insights ecommerce dataset are here. Keep the link open in a new tab for reference.
Task 1. Explore ecommerce data
Scenario: Your data analyst team exported the Google Analytics logs for an ecommerce website into BigQuery and created a new table of all the raw ecommerce visitor session data for you to explore. Using this data, you'll try to answer a few questions.
Question: Out of the total visitors who visited our website, what % made a purchase?
- Copy and paste the following query into the BigQuery Editor:
- Click Run.
The result: 2.69%
Question: What are the top 5 selling products?
- Clear the previous query, and then add the following query in the Editor:
- Click Run
The result:
Row |
v2ProductName |
v2ProductCategory |
units_sold |
revenue |
1 |
Nest® Learning Thermostat 3rd Gen-USA - Stainless Steel |
Nest-USA |
17651 |
870976.95 |
2 |
Nest® Cam Outdoor Security Camera - USA |
Nest-USA |
16930 |
684034.55 |
3 |
Nest® Cam Indoor Security Camera - USA |
Nest-USA |
14155 |
548104.47 |
4 |
Nest® Protect Smoke + CO White Wired Alarm-USA |
Nest-USA |
6394 |
178937.6 |
5 |
Nest® Protect Smoke + CO White Battery Alarm-USA |
Nest-USA |
6340 |
178572.4 |
Question: How many visitors bought on subsequent visits to the website?
- Clear the previous query, and then add the following query in the Editor:
- Click Run.
The results:
Row |
total_visitors |
will_buy_on_return_visit |
1 |
729848 |
0 |
2 |
11873 |
1 |
Analyzing the results, you can see that (11873 / 741721) = 1.6% of total visitors will return and purchase from the website. This includes the subset of visitors who bought on their very first session and then came back and bought again.
Question: What are some of the reasons a typical ecommerce customer will browse but not buy until a later visit?
Answer: Although there is no one right answer, one popular reason is comparison shopping between different ecommerce sites before ultimately making a purchase decision. This is very common for luxury goods where significant up-front research and comparison is required by the customer before deciding (think car purchases) but also true to a lesser extent for the merchandise on this site (t-shirts, accessories, etc).
In the world of online marketing, identifying and marketing to these future customers based on the characteristics of their first visit will increase conversion rates and reduce the outflow to competitor sites.
Task 2. Identify an objective
Now you will create a Machine Learning model in BigQuery to predict whether or not a new user is likely to purchase in the future. Identifying these high-value users can help your marketing team to target them with special promotions and ad campaigns to ensure a conversion while they comparison shop between visits to your ecommerce site.
Task 3. Select features and create your training dataset
Google Analytics captures a wide variety of dimensions and measures about a user's visit on this ecommerce website. Browse the complete list of fields in the [UA] BigQuery Export schema documentation and then preview the demo dataset to find useful features that will help a machine learning model understand the relationship between data about a visitor's first time on your website and whether they will return and make a purchase.
Your team decides to test whether these two fields are good inputs for your classification model:
-
totals.bounces
(whether the visitor left the website immediately) -
totals.timeOnSite
(how long the visitor was on our website)
Question: What are the risks of only using the above two fields?
Answer: Machine learning is only as good as the training data that is fed into it. If there isn't enough information for the model to determine and learn the relationship between your input features and your label (in this case, whether the visitor bought in the future) then you will not have an accurate model. While training a model on just these two fields is a start, you will see if they're good enough to produce an accurate model.
- In the BigQuery Editor, run the following query:
Results:
Row |
bounces |
time_on_site |
will_buy_on_return_visit |
1 |
0 |
15047 |
0 |
2 |
0 |
12136 |
0 |
3 |
0 |
11201 |
0 |
4 |
0 |
10046 |
0 |
5 |
0 |
9974 |
0 |
6 |
0 |
9564 |
0 |
7 |
0 |
9520 |
0 |
8 |
0 |
9275 |
1 |
9 |
0 |
9138 |
0 |
10 |
0 |
8872 |
0 |
Question: Which fields are the input features and the label?
Answer: The inputs are bounces and time_on_site. The label is will_buy_on_return_visit.
Question: Which two fields are known after a visitor's first session?
Answer: bounces and time_on_site are known after a visitor's first session.
Question: Which field isn't known until later in the future?
Answer: will_buy_on_return_visit is not known after the first visit. Again, you're predicting for a subset of users who returned to your website and purchased. Since you don't know the future at prediction time, you cannot say with certainty whether a new visitor will come back and purchase. The value of building an ML model is to get the probability of future purchase based on the data gleaned about their first session.
Question: Looking at the initial data results, do you think time_on_site and bounces will be a good indicator of whether the user will return and purchase or not?
Answer: It's often too early to tell before training and evaluating the model, but at first glance out of the top 10 time_on_site
, only 1 customer returned to buy, which isn't very promising. Let's see how well the model does.
Task 4. Create a BigQuery dataset to store models
Next, create a new BigQuery dataset which will also store your ML models.
- In the left pane, under Explorer section, click on the View actions icon next to your project name (starts with
qwiklabs-gcp-...
), and then click Create dataset.
- In the Create dataset dialog:
- For Dataset ID, type "ecommerce".
- Leave the other values at their defaults.
- Click Create dataset.
Click Check my progress to verify the objective.
Task 5. Select a BigQuery ML model type and specify options
Now that you have your initial features selected, you are now ready to create your first ML model in BigQuery.
There are the two model types to choose from:
Model |
Model Type |
Label Data type |
Example |
Forecasting |
linear_reg |
Numeric value (typically an integer or floating point) |
Forecast sales figures for next year given historical sales data. |
Classification |
logistic_reg |
0 or 1 for binary classification |
Classify an email as spam or not spam given the context. |
Which model type should you choose?
Since you are bucketing visitors into "will buy in future" or "won't buy in future", use logistic_reg
in a classification model.
The following query creates a model and specifies model options.
- Run this query to train your model:
- Wait for the model to train (5 - 10 minutes).
Click Check my progress to verify the objective.
After your model is trained, you will see the message "This statement created a new model named qwiklabs-gcp-xxxxxxxxx:ecommerce.classification_model".
-
Click Go to model.
-
Look inside the ecommerce dataset and confirm classification_model now appears.
Next, you evaluate the performance of the model against new unseen evaluation data.
Task 6. Evaluate classification model performance
Select your performance criteria
For classification problems in ML, you want to minimize the False Positive Rate (predict that the user will return and purchase and they don't) and maximize the True Positive Rate (predict that the user will return and purchase and they do).
This relationship is visualized with a ROC (Receiver Operating Characteristic) curve like the one shown here, where you try to maximize the area under the curve or AUC:
In BigQuery ML, roc_auc is simply a queryable field when evaluating your trained ML model.
- Now that training is complete, run this query to evaluate how well the model performs using
ML.EVALUATE
:
You should see the following result:
Row |
roc_auc |
model_quality |
1 |
0.7238561438561438 |
decent |
After evaluating your model you get a roc_auc of 0.72, which shows the model has decent, but not great, predictive power. Since the goal is to get the area under the curve as close to 1.0 as possible, there is room for improvement.
Click Check my progress to verify the objective.
Task 7. Improve model performance with Feature Engineering
As was hinted at earlier, there are many more features in the dataset that may help the model better understand the relationship between a visitor's first session and the likelihood that they will purchase on a subsequent visit.
- Add some new features and create a second machine learning model called
classification_model_2
:
- How far the visitor got in the checkout process on their first visit
- Where the visitor came from (traffic source: organic search, referring site etc..)
- Device category (mobile, tablet, desktop)
- Geographic information (country)
- Create this second model by clicking on "+" (SQL query) icon:
A new key feature that was added to the training dataset query is the maximum checkout progress each visitor reached in their session, which is recorded in the field hits.eCommerceAction.action_type
. If you search for that field in the field definitions you will see the field mapping of 6 = Completed Purchase.
- Wait for the new model to finish training (5-10 minutes).
Click Check my progress to verify the objective.
- Evaluate this new model to see if there is better predictive power:
Output:
Row |
roc_auc |
model_quality |
1 |
0.9094875124875125 |
good |
With this new model you now get a roc_auc of 0.91 which is significantly better than the first model.
Now that you have a trained model, time to make some predictions.
Click Check my progress to verify the objective.
Task 8. Predict which new visitors will come back and purchase
Next you will write a query to predict which new visitors will come back and make a purchase.
- The prediction query below uses the improved classification model to predict the probability that a first-time visitor to the Google Merchandise Store will make a purchase in a later visit:
The predictions are made in the last 1 month (out of 12 months) of the dataset.
Click Check my progress to verify the objective.
Your model now outputs its predictions for those July 2017 ecommerce sessions. You can see three newly added fields:
- predicted_will_buy_on_return_visit: whether the model thinks the visitor will buy later (1 = yes)
- predicted_will_buy_on_return_visit_probs.label: the binary classifier for yes / no
- predicted_will_buy_on_return_visit.probs.prob: the confidence the model has in it's prediction (1 = 100%)
Task 9. Analyze results and additional information
Results
- Of the top 6% of first-time visitors (sorted in decreasing order of predicted probability), more than 6% make a purchase in a later visit.
- These users represent nearly 50% of all first-time visitors who make a purchase in a later visit.
- Overall, only 0.7% of first-time visitors make a purchase in a later visit.
- Targeting the top 6% of first-time increases marketing ROI by 9x vs targeting them all!
Additional information
Tip: add warm_start = true
to your model options if you are retraining new data on an existing model for faster training times. Note that you cannot change the feature columns (this would necessitate a new model).
roc_auc is just one of the performance metrics available during model evaluation. Also available are accuracy, precision, and recall. Knowing which performance metric to rely on is highly dependent on what your overall objective or goal is.
Other datasets to explore
You can use the bigquery-public-data project if you want to explore modeling on other datasets like forecasting fares for taxi trips.
- To open the bigquery-public-data dataset, click +Add. Click Star a project by name under Additional sources.
- Then write the
bigquery-public-data
name. - Click Star.
The bigquery-public-data
project is listed in the Explorer section.
Task 10. Test your knowledge
Test your knowledge about Google Cloud Platform by taking our quiz.
Congratulations!
You've successfully built a machine learning model with BigQuery ML to classify ecommerce visitors and predict their purchasing habits.
Next steps / Learn more
- Have a Google Analytics account and want to query your own datasets in BigQuery? From the Analytics Help page, follow the Set up BigQuery Export Guide.
- For a resource to create queries, in the BigQuery page, see the Query Syntax Reference.
- Check out this lab: Predict Taxi Fare with a BigQuery ML Forecasting Model
Google Cloud training and certification
...helps you make the most of Google Cloud technologies. Our classes include technical skills and best practices to help you get up to speed quickly and continue your learning journey. We offer fundamental to advanced level training, with on-demand, live, and virtual options to suit your busy schedule. Certifications help you validate and prove your skill and expertise in Google Cloud technologies.
Manual Last Updated September 13, 2024
Lab Last Tested September 13, 2024
Copyright 2024 Google LLC All rights reserved. Google and the Google logo are trademarks of Google LLC. All other company and product names may be trademarks of the respective companies with which they are associated.