SlideShare a Scribd company logo
1 of 26
Optimizing Your Funnels with SQL
Any fool can complicate things.
It takes genius to simplify them.
Albert Einstein
1. A Walk thru of the Data.
2. Style Quiz Funnel.
3. Home Try-On Funnel.
4. Actionable Insights for Warby Parker.
CONTENTS
A random walk thru
The Data
Three fields with text data:
● Question
● User_id
● Response
The survey table contains 5 survey questions along with 1986 responses from
500 participants. The table below shows that although 500 participates started
the survey, only 270 finished it. 230 participants quit during the 5 question quiz.
SELECT *
FROM survey
LIMIT 10
;
Q 2: What is the number of responses for
each question in the quiz?
SELECT question,
COUNT (user_id) AS "User IDs",
COUNT (response) AS "Responses"
FROM survey
GROUP BY question
;
SELECT COUNT(DISTINCT user_id)
FROM survey
;
Q 1: What columns does the [survey] table
have?
The Survey Table
Drop Offs: Look at the Completion Rates.
When you look at completion rates for each question the differences are not as pronounced as
when you convert the same metric to a drop off rate. Question 5 has the lowest completion
rate, which is sad for the 91 people who came so close to finishing but didn’t!
The second significant drop off occurs for question 3; 98 participants quit on this question.
Almost 40% (37.8%) of participants end the survey on these two questions. Why is that?
Questions Unique
Users
% of
Users
Completion
Rate
Drop Off
1. What are you looking for? 500 100% n/a n/a
2. What’s your fit? 475 95% 95% 5%
3. Which shapes do you like? 380 76% 80% 20%
4. Which colors do you like? 361 72% 95% 5%
5. When was your last eye
exam?
270 54% 75% 25%
Q 3.a: Which questions of the quiz have a
lower completion rate?
-- No SQL for this question
The Style Quiz Funnel
The most common results from the Style Quiz.
SELECT question AS Question,
response AS Response,
COUNT (response) AS "Response
Count"
FROM survey
WHERE Question like “1.%"
GROUP BY response
ORDER BY "Response Count" DESC
;
209
49 (9.8%)
SELECT question AS Question,
response AS Response,
COUNT (response) AS "Response
Count"
FROM survey
WHERE Question like “2.%"
GROUP BY response
ORDER BY "Response Count" DESC
;
132
47 (9.9%)
88
Drop Off: 5%
SELECT question AS Question,
response AS Response,
COUNT (response) AS "Response
Count"
FROM survey
WHERE Question like "3.%"
GROUP BY response
ORDER BY "Response Count" DESC
;
91
29 (7.6%)
119
Drop Off: 20%
SELECT question AS Question,
response AS Response,
COUNT (response) AS "Response Count",
COUNT(user_id)
FROM survey
WHERE Question like "4.%"
GROUP BY response
ORDER BY "Response Count" DESC
;
SELECT user_id,
COUNT(response) AS "RES"
FROM survey
WHERE question like "4.%"
GROUP BY user_id
ORDER BY 2 DESC
;
0 (0%)
112
Drop Off: 5%
69 27360
Why? Is it because they are cheap?
I don’t think so!
Despite this direction, no participants choose
more than one color. I took the quiz myself, and
missed this direction as well.
SELECT question AS Question,
response AS Response,
COUNT (response) AS "Response
Count",
COUNT (user_id)
FROM survey
WHERE Question like "5.%"
GROUP BY response
ORDER BY "Response Count" DESC
;
36 (10%)
37
Drop Off: 25%
56
Years Years Years
The Survey Table
On question 3, about shape, we see a significant drop off with only 7% selecting no preference (avg. no
preference selection is around 10%). I thought selecting “No preference” might shed light on survey fatigue,
No luck.
On question 5, about the last eye exam, there is significant drop off as well. Most respondents answered less
than a year. That isn’t hard to remember. A case can be made for fatigue.
I don’t see a clear reason for why. I would test the order of the questions. Possibly, these question are more
difficult to answer. Maybe users start to fatigue on the third question. The colors question showed strong
participation. Try using that as the third question. I strongly recommend testing the order of questions.
Questions Unique
Users
% of
Users
Completion
Rate
Drop Off
1. What are you looking for? 500 100% n/a n/a
2. What’s your fit? 475 95% 95% 5%
3. Which shapes do you like? 380 76% 80% 20%
4. Which colors do you like? 361 72% 95% 5%
5. When was your last eye
exam?
270 54% 75% 25%
Q 3.b: Why?
-- No SQL for this question
The Home Try-On Funnel
This data funnel pulls from data organized into three tables.
The quiz table has five fields with text data: user_id, style, fit, shape, & color.
The home_try_on table has three fields with text data: user_id, number_of_pairs, & address.
The purchase table has six fields with text and integer data: user_id, product_id, style,
model_name, color, price.
Note that below is the schema, not the results of the query. The results were not material to
this question.
SELECT *
FROM quiz
LIMIT 5
;
SELECT *
FROM home_try_on
LIMIT 5
;
SELECT *
FROM purchase
LIMIT 5
;
Q 4: What are the column names [of each
table]?
The Home Try-On Tables
Overall Conversion Rates
Quiz Home Trial Purchase
Unique Users 1000 750 495
Conversion
Rate n/a 75% 66%
Q 6.a: calculate overall conversion rates by
aggregating across all rows and compare
conversions.
WITH base_table AS(
SELECT q.user_id,
h.user_id IS NOT NULL AS
'is_home_try_on',
h.number_of_pairs AS 'AB_TEST',
b.user_id IS NOT NULL AS 'is_purchase'
FROM quiz as q
LEFT JOIN home_try_on as h
ON q.user_id = h.user_id
LEFT JOIN purchase as b -- 'b' for buy. p
is too close to q
ON q.user_id = b.user_id
)
SELECT
--AB_TEST,
COUNT(user_id) as "Quiz",
SUM(CASE WHEN is_home_try_on = 1 THEN
1 ELSE 0 END) as "Home Trial",
SUM(CASE WHEN is_purchase = 1 THEN 1
ELSE 0 END) as "Purchase"
FROM base_table
;
Of those users that took the quiz, 75% moved on to the home trial.
Of those users that completed the home trial, 66% made a purchase. This
66% is misleading. We A/B tested sending out 5 trail pairs of glasses VS 3
pairs. The results are unmistakable.
What are some
For Warby Parker
actionable insights
?
Five Pairs Drive More Sales!
At almost 80% sales conversion, offering 5 trail pairs clearly drives
more sales than the standard offering of 3 trial pairs. The results of
the A/B test demonstrate this outcome with a 1% margin of error.
Offer 5 trail pairs.
A/B Test Home Trial Purchase Conversion
3 pairs 379 201 53.0%
5 pairs 371 294 79.2%
All 750 495 66%
This is significant at a 99% significance level.
Q 6.a: calculate the difference in purchase
rates between customers who had 3
“number_of_pairs” with ones who had 5.
WITH base_table AS(
SELECT q.user_id,
h.user_id IS NOT NULL AS 'is_home_try_on',
h.number_of_pairs AS 'AB_TEST',
b.user_id IS NOT NULL AS 'is_purchase'
FROM quiz as q
LEFT JOIN home_try_on as h
ON q.user_id = h.user_id
LEFT JOIN purchase as b -- 'b' for buy. p is
too close to q
ON q.user_id = b.user_id
)
SELECT
AB_TEST,
COUNT(user_id) as "Quiz",
SUM(CASE WHEN is_home_try_on = 1 THEN 1
ELSE 0 END) as "Home Trial",
SUM(CASE WHEN is_purchase = 1 THEN 1 ELSE
0 END) as "Purchase"
FROM base_table
GROUP BY AB_TEST
HAVING "Home Trial" > 0
ORDER BY AB_TEST
;
SELECT model_name AS "Model Name",
COUNT (user_id) AS Total,
SUM(CASE WHEN color = "Elderflower
Crystal" then 1 else 0 END) AS "Elderflower
Crystal",
SUM (CASE WHEN color = "Jet Black" AND
style = "Women's Styles" THEN 1 ELSE 0 END)
AS "Jet Black (W)",
SUM (CASE WHEN color = "Pearled
Tortoise" THEN 1 ELSE 0 END) AS "Perled
Tortoise",
SUM (CASE WHEN color = "Rose Crystal"
THEN 1 ELSE 0 END) AS "Rose Crystal",
SUM (CASE WHEN color = "Rosewood
Tortoise" THEN 1 ELSE 0 END) AS "Rosewood
Tortoise"
FROM purchase
GROUP BY model_name
ORDER BY 2 DESC
;
Tortoise IS the new black.
For women, there is a clear preference for the Eugene Narrow
Rosewood Tortoise over the control pair (Lucy Jet Black) with a 5%
margin of error. The same frames in the rosewood crystal color are
the second most popular, besting the control with a 10% margin of
error.
Tortoise and black colors are the most popular for both men and
women. The survey shows a measurable statistically significant
preference for these colors compared to the fourth place “Neutral”
color. Women preferred tortoise to black with a 10% margin of error.
SELECT model_name AS "Model Name",
COUNT (user_id) AS Total,
SUM(CASE WHEN color = "Driftwood Fade"
THEN 1 ELSE 0 END) AS Driftwood,
SUM(CASE WHEN color = "Endangered
Tortoise" THEN 1 ELSE 0 END) AS "Endangered
Tortoise",
SUM(CASE WHEN color = "Jet Black" AND
style = "Men's Styles" THEN 1 ELSE 0 END)
AS "Jet Black (M)",
SUM(CASE WHEN color = "Layered Tortoise
Matte" THEN 1 ELSE 0 END) AS "Layered
Tortoise Matte",
SUM(CASE WHEN color = "Sea Glass Gray"
THEN 1 ELSE 0 END) AS "Sea Glass Gray"
FROM purchase
GROUP BY 1
ORDER BY 2 DESC
;
Men are Indiferent . . . for now.
For the men, the most purchased item is the Dawes Driftwood Fade
glasses. There is a measurable preference for these glasses
compared to a control group of glasses. Brady Layered Tortoise
placed second and was statistically indistinguishable from the control
group or the Dawes. This matches our expectations. Men’s preference
for tortoise over black was slightly higher but indistinguishable with
any meaningful measure of confidence.
Pay attention to this trend, we might still be in the early stages.
Take-aways
1. Offer 5 pairs of glasses for the home trial (Slide 23).
2. Raise prices for Tortoise products in the women’s style lines. Early adopters will not
be price sensitive.
3. Monitor Tortoise products in the men’s lines. Test prices. Early adopters will not be
price sensitive.
4. Do some testing with the order of questions in the survey quiz.
5. The survey identifies that participants can identify more than one color, but none did.
This is an issue with the design of the quiz.

More Related Content

Similar to Tortoise IS The New Black

Simple rules for building robust machine learning models
Simple rules for building robust machine learning modelsSimple rules for building robust machine learning models
Simple rules for building robust machine learning modelsKyriakos Chatzidimitriou
 
Presentation top tips for getting optimal sql execution
Presentation    top tips for getting optimal sql executionPresentation    top tips for getting optimal sql execution
Presentation top tips for getting optimal sql executionxKinAnx
 
Predicting Helpfulness of User-Generated Product Reviews Through Analytical M...
Predicting Helpfulness of User-Generated Product Reviews Through Analytical M...Predicting Helpfulness of User-Generated Product Reviews Through Analytical M...
Predicting Helpfulness of User-Generated Product Reviews Through Analytical M...Ankita Kaul
 
STAT 225 Final ExaminationSummer 2015 OL1US1Page 1 of 10STAT .docx
STAT 225 Final ExaminationSummer 2015 OL1US1Page 1 of 10STAT .docxSTAT 225 Final ExaminationSummer 2015 OL1US1Page 1 of 10STAT .docx
STAT 225 Final ExaminationSummer 2015 OL1US1Page 1 of 10STAT .docxdessiechisomjj4
 
De vry math 399 ilabs & discussions latest 2016
De vry math 399 ilabs & discussions latest 2016De vry math 399 ilabs & discussions latest 2016
De vry math 399 ilabs & discussions latest 2016lenasour
 
De vry math 399 ilabs & discussions latest 2016 november
De vry math 399 ilabs & discussions latest 2016 novemberDe vry math 399 ilabs & discussions latest 2016 november
De vry math 399 ilabs & discussions latest 2016 novemberlenasour
 
Decision tree induction
Decision tree inductionDecision tree induction
Decision tree inductionthamizh arasi
 
1242019 Z Score Table - Z Table and Z score calculationw.docx
1242019 Z Score Table - Z Table and Z score calculationw.docx1242019 Z Score Table - Z Table and Z score calculationw.docx
1242019 Z Score Table - Z Table and Z score calculationw.docxaulasnilda
 
Brand tracking with Bayesian Models and Metaflow
Brand tracking with Bayesian Models and MetaflowBrand tracking with Bayesian Models and Metaflow
Brand tracking with Bayesian Models and MetaflowCorrie Bartelheimer
 
Math221 w2 lab your_name_here
Math221 w2 lab your_name_hereMath221 w2 lab your_name_here
Math221 w2 lab your_name_hereNStockley
 
Barga Data Science lecture 9
Barga Data Science lecture 9Barga Data Science lecture 9
Barga Data Science lecture 9Roger Barga
 
m2_2_variation_z_scores.pptx
m2_2_variation_z_scores.pptxm2_2_variation_z_scores.pptx
m2_2_variation_z_scores.pptxMesfinMelese4
 
Tips and tricks to win kaggle data science competitions
Tips and tricks to win kaggle data science competitionsTips and tricks to win kaggle data science competitions
Tips and tricks to win kaggle data science competitionsDarius Barušauskas
 
Final examexamplesapr2013
Final examexamplesapr2013Final examexamplesapr2013
Final examexamplesapr2013Brent Heard
 
An Adaptive Speed-Call List Algorithm and Its Evaluation with ESM
An Adaptive Speed-Call List Algorithm and Its Evaluation with ESMAn Adaptive Speed-Call List Algorithm and Its Evaluation with ESM
An Adaptive Speed-Call List Algorithm and Its Evaluation with ESMguestac8e83
 
Sampling
SamplingSampling
Samplingal amin
 
Mb0050 research methodology
Mb0050   research methodologyMb0050   research methodology
Mb0050 research methodologysmumbahelp
 
Surveys that work: training course for Rosenfeld Media, day 3
Surveys that work: training course for Rosenfeld Media, day 3 Surveys that work: training course for Rosenfeld Media, day 3
Surveys that work: training course for Rosenfeld Media, day 3 Caroline Jarrett
 

Similar to Tortoise IS The New Black (20)

Simple rules for building robust machine learning models
Simple rules for building robust machine learning modelsSimple rules for building robust machine learning models
Simple rules for building robust machine learning models
 
Presentation top tips for getting optimal sql execution
Presentation    top tips for getting optimal sql executionPresentation    top tips for getting optimal sql execution
Presentation top tips for getting optimal sql execution
 
Predicting Helpfulness of User-Generated Product Reviews Through Analytical M...
Predicting Helpfulness of User-Generated Product Reviews Through Analytical M...Predicting Helpfulness of User-Generated Product Reviews Through Analytical M...
Predicting Helpfulness of User-Generated Product Reviews Through Analytical M...
 
STAT 225 Final ExaminationSummer 2015 OL1US1Page 1 of 10STAT .docx
STAT 225 Final ExaminationSummer 2015 OL1US1Page 1 of 10STAT .docxSTAT 225 Final ExaminationSummer 2015 OL1US1Page 1 of 10STAT .docx
STAT 225 Final ExaminationSummer 2015 OL1US1Page 1 of 10STAT .docx
 
7INNOVA Lesson 5 slides for T26
7INNOVA Lesson 5 slides for T267INNOVA Lesson 5 slides for T26
7INNOVA Lesson 5 slides for T26
 
De vry math 399 ilabs & discussions latest 2016
De vry math 399 ilabs & discussions latest 2016De vry math 399 ilabs & discussions latest 2016
De vry math 399 ilabs & discussions latest 2016
 
De vry math 399 ilabs & discussions latest 2016 november
De vry math 399 ilabs & discussions latest 2016 novemberDe vry math 399 ilabs & discussions latest 2016 november
De vry math 399 ilabs & discussions latest 2016 november
 
Decision tree induction
Decision tree inductionDecision tree induction
Decision tree induction
 
1242019 Z Score Table - Z Table and Z score calculationw.docx
1242019 Z Score Table - Z Table and Z score calculationw.docx1242019 Z Score Table - Z Table and Z score calculationw.docx
1242019 Z Score Table - Z Table and Z score calculationw.docx
 
Brand tracking with Bayesian Models and Metaflow
Brand tracking with Bayesian Models and MetaflowBrand tracking with Bayesian Models and Metaflow
Brand tracking with Bayesian Models and Metaflow
 
Math221 w2 lab your_name_here
Math221 w2 lab your_name_hereMath221 w2 lab your_name_here
Math221 w2 lab your_name_here
 
Barga Data Science lecture 9
Barga Data Science lecture 9Barga Data Science lecture 9
Barga Data Science lecture 9
 
m2_2_variation_z_scores.pptx
m2_2_variation_z_scores.pptxm2_2_variation_z_scores.pptx
m2_2_variation_z_scores.pptx
 
Testing
TestingTesting
Testing
 
Tips and tricks to win kaggle data science competitions
Tips and tricks to win kaggle data science competitionsTips and tricks to win kaggle data science competitions
Tips and tricks to win kaggle data science competitions
 
Final examexamplesapr2013
Final examexamplesapr2013Final examexamplesapr2013
Final examexamplesapr2013
 
An Adaptive Speed-Call List Algorithm and Its Evaluation with ESM
An Adaptive Speed-Call List Algorithm and Its Evaluation with ESMAn Adaptive Speed-Call List Algorithm and Its Evaluation with ESM
An Adaptive Speed-Call List Algorithm and Its Evaluation with ESM
 
Sampling
SamplingSampling
Sampling
 
Mb0050 research methodology
Mb0050   research methodologyMb0050   research methodology
Mb0050 research methodology
 
Surveys that work: training course for Rosenfeld Media, day 3
Surveys that work: training course for Rosenfeld Media, day 3 Surveys that work: training course for Rosenfeld Media, day 3
Surveys that work: training course for Rosenfeld Media, day 3
 

Recently uploaded

Identify Customer Segments to Create Customer Offers for Each Segment - Appli...
Identify Customer Segments to Create Customer Offers for Each Segment - Appli...Identify Customer Segments to Create Customer Offers for Each Segment - Appli...
Identify Customer Segments to Create Customer Offers for Each Segment - Appli...ThinkInnovation
 
edited gordis ebook sixth edition david d.pdf
edited gordis ebook sixth edition david d.pdfedited gordis ebook sixth edition david d.pdf
edited gordis ebook sixth edition david d.pdfgreat91
 
SCI8-Q4-MOD11.pdfwrwujrrjfaajerjrajrrarj
SCI8-Q4-MOD11.pdfwrwujrrjfaajerjrajrrarjSCI8-Q4-MOD11.pdfwrwujrrjfaajerjrajrrarj
SCI8-Q4-MOD11.pdfwrwujrrjfaajerjrajrrarjadimosmejiaslendon
 
原件一样(UWO毕业证书)西安大略大学毕业证成绩单留信学历认证
原件一样(UWO毕业证书)西安大略大学毕业证成绩单留信学历认证原件一样(UWO毕业证书)西安大略大学毕业证成绩单留信学历认证
原件一样(UWO毕业证书)西安大略大学毕业证成绩单留信学历认证pwgnohujw
 
如何办理英国卡迪夫大学毕业证(Cardiff毕业证书)成绩单留信学历认证
如何办理英国卡迪夫大学毕业证(Cardiff毕业证书)成绩单留信学历认证如何办理英国卡迪夫大学毕业证(Cardiff毕业证书)成绩单留信学历认证
如何办理英国卡迪夫大学毕业证(Cardiff毕业证书)成绩单留信学历认证ju0dztxtn
 
NO1 Best Kala Jadu Expert Specialist In Germany Kala Jadu Expert Specialist I...
NO1 Best Kala Jadu Expert Specialist In Germany Kala Jadu Expert Specialist I...NO1 Best Kala Jadu Expert Specialist In Germany Kala Jadu Expert Specialist I...
NO1 Best Kala Jadu Expert Specialist In Germany Kala Jadu Expert Specialist I...Amil baba
 
obat aborsi Tarakan wa 081336238223 jual obat aborsi cytotec asli di Tarakan9...
obat aborsi Tarakan wa 081336238223 jual obat aborsi cytotec asli di Tarakan9...obat aborsi Tarakan wa 081336238223 jual obat aborsi cytotec asli di Tarakan9...
obat aborsi Tarakan wa 081336238223 jual obat aborsi cytotec asli di Tarakan9...yulianti213969
 
Predictive Precipitation: Advanced Rain Forecasting Techniques
Predictive Precipitation: Advanced Rain Forecasting TechniquesPredictive Precipitation: Advanced Rain Forecasting Techniques
Predictive Precipitation: Advanced Rain Forecasting TechniquesBoston Institute of Analytics
 
How to Transform Clinical Trial Management with Advanced Data Analytics
How to Transform Clinical Trial Management with Advanced Data AnalyticsHow to Transform Clinical Trial Management with Advanced Data Analytics
How to Transform Clinical Trial Management with Advanced Data AnalyticsBrainSell Technologies
 
Seven tools of quality control.slideshare
Seven tools of quality control.slideshareSeven tools of quality control.slideshare
Seven tools of quality control.slideshareraiaryan448
 
Formulas dax para power bI de microsoft.pdf
Formulas dax para power bI de microsoft.pdfFormulas dax para power bI de microsoft.pdf
Formulas dax para power bI de microsoft.pdfRobertoOcampo24
 
What is Insertion Sort. Its basic information
What is Insertion Sort. Its basic informationWhat is Insertion Sort. Its basic information
What is Insertion Sort. Its basic informationmuqadasqasim10
 
Credit Card Fraud Detection: Safeguarding Transactions in the Digital Age
Credit Card Fraud Detection: Safeguarding Transactions in the Digital AgeCredit Card Fraud Detection: Safeguarding Transactions in the Digital Age
Credit Card Fraud Detection: Safeguarding Transactions in the Digital AgeBoston Institute of Analytics
 
Aggregations - The Elasticsearch "GROUP BY"
Aggregations - The Elasticsearch "GROUP BY"Aggregations - The Elasticsearch "GROUP BY"
Aggregations - The Elasticsearch "GROUP BY"John Sobanski
 
Bios of leading Astrologers & Researchers
Bios of leading Astrologers & ResearchersBios of leading Astrologers & Researchers
Bios of leading Astrologers & Researchersdarmandersingh4580
 
Jual Obat Aborsi Bandung (Asli No.1) Wa 082134680322 Klinik Obat Penggugur Ka...
Jual Obat Aborsi Bandung (Asli No.1) Wa 082134680322 Klinik Obat Penggugur Ka...Jual Obat Aborsi Bandung (Asli No.1) Wa 082134680322 Klinik Obat Penggugur Ka...
Jual Obat Aborsi Bandung (Asli No.1) Wa 082134680322 Klinik Obat Penggugur Ka...Klinik Aborsi
 
Statistics Informed Decisions Using Data 5th edition by Michael Sullivan solu...
Statistics Informed Decisions Using Data 5th edition by Michael Sullivan solu...Statistics Informed Decisions Using Data 5th edition by Michael Sullivan solu...
Statistics Informed Decisions Using Data 5th edition by Michael Sullivan solu...ssuserf63bd7
 
1:1原版定制伦敦政治经济学院毕业证(LSE毕业证)成绩单学位证书留信学历认证
1:1原版定制伦敦政治经济学院毕业证(LSE毕业证)成绩单学位证书留信学历认证1:1原版定制伦敦政治经济学院毕业证(LSE毕业证)成绩单学位证书留信学历认证
1:1原版定制伦敦政治经济学院毕业证(LSE毕业证)成绩单学位证书留信学历认证dq9vz1isj
 
obat aborsi Bontang wa 081336238223 jual obat aborsi cytotec asli di Bontang6...
obat aborsi Bontang wa 081336238223 jual obat aborsi cytotec asli di Bontang6...obat aborsi Bontang wa 081336238223 jual obat aborsi cytotec asli di Bontang6...
obat aborsi Bontang wa 081336238223 jual obat aborsi cytotec asli di Bontang6...yulianti213969
 

Recently uploaded (20)

Identify Customer Segments to Create Customer Offers for Each Segment - Appli...
Identify Customer Segments to Create Customer Offers for Each Segment - Appli...Identify Customer Segments to Create Customer Offers for Each Segment - Appli...
Identify Customer Segments to Create Customer Offers for Each Segment - Appli...
 
edited gordis ebook sixth edition david d.pdf
edited gordis ebook sixth edition david d.pdfedited gordis ebook sixth edition david d.pdf
edited gordis ebook sixth edition david d.pdf
 
SCI8-Q4-MOD11.pdfwrwujrrjfaajerjrajrrarj
SCI8-Q4-MOD11.pdfwrwujrrjfaajerjrajrrarjSCI8-Q4-MOD11.pdfwrwujrrjfaajerjrajrrarj
SCI8-Q4-MOD11.pdfwrwujrrjfaajerjrajrrarj
 
原件一样(UWO毕业证书)西安大略大学毕业证成绩单留信学历认证
原件一样(UWO毕业证书)西安大略大学毕业证成绩单留信学历认证原件一样(UWO毕业证书)西安大略大学毕业证成绩单留信学历认证
原件一样(UWO毕业证书)西安大略大学毕业证成绩单留信学历认证
 
如何办理英国卡迪夫大学毕业证(Cardiff毕业证书)成绩单留信学历认证
如何办理英国卡迪夫大学毕业证(Cardiff毕业证书)成绩单留信学历认证如何办理英国卡迪夫大学毕业证(Cardiff毕业证书)成绩单留信学历认证
如何办理英国卡迪夫大学毕业证(Cardiff毕业证书)成绩单留信学历认证
 
NO1 Best Kala Jadu Expert Specialist In Germany Kala Jadu Expert Specialist I...
NO1 Best Kala Jadu Expert Specialist In Germany Kala Jadu Expert Specialist I...NO1 Best Kala Jadu Expert Specialist In Germany Kala Jadu Expert Specialist I...
NO1 Best Kala Jadu Expert Specialist In Germany Kala Jadu Expert Specialist I...
 
obat aborsi Tarakan wa 081336238223 jual obat aborsi cytotec asli di Tarakan9...
obat aborsi Tarakan wa 081336238223 jual obat aborsi cytotec asli di Tarakan9...obat aborsi Tarakan wa 081336238223 jual obat aborsi cytotec asli di Tarakan9...
obat aborsi Tarakan wa 081336238223 jual obat aborsi cytotec asli di Tarakan9...
 
Predictive Precipitation: Advanced Rain Forecasting Techniques
Predictive Precipitation: Advanced Rain Forecasting TechniquesPredictive Precipitation: Advanced Rain Forecasting Techniques
Predictive Precipitation: Advanced Rain Forecasting Techniques
 
How to Transform Clinical Trial Management with Advanced Data Analytics
How to Transform Clinical Trial Management with Advanced Data AnalyticsHow to Transform Clinical Trial Management with Advanced Data Analytics
How to Transform Clinical Trial Management with Advanced Data Analytics
 
Seven tools of quality control.slideshare
Seven tools of quality control.slideshareSeven tools of quality control.slideshare
Seven tools of quality control.slideshare
 
Formulas dax para power bI de microsoft.pdf
Formulas dax para power bI de microsoft.pdfFormulas dax para power bI de microsoft.pdf
Formulas dax para power bI de microsoft.pdf
 
What is Insertion Sort. Its basic information
What is Insertion Sort. Its basic informationWhat is Insertion Sort. Its basic information
What is Insertion Sort. Its basic information
 
Credit Card Fraud Detection: Safeguarding Transactions in the Digital Age
Credit Card Fraud Detection: Safeguarding Transactions in the Digital AgeCredit Card Fraud Detection: Safeguarding Transactions in the Digital Age
Credit Card Fraud Detection: Safeguarding Transactions in the Digital Age
 
Aggregations - The Elasticsearch "GROUP BY"
Aggregations - The Elasticsearch "GROUP BY"Aggregations - The Elasticsearch "GROUP BY"
Aggregations - The Elasticsearch "GROUP BY"
 
Bios of leading Astrologers & Researchers
Bios of leading Astrologers & ResearchersBios of leading Astrologers & Researchers
Bios of leading Astrologers & Researchers
 
Abortion pills in Riyadh Saudi Arabia (+966572737505 buy cytotec
Abortion pills in Riyadh Saudi Arabia (+966572737505 buy cytotecAbortion pills in Riyadh Saudi Arabia (+966572737505 buy cytotec
Abortion pills in Riyadh Saudi Arabia (+966572737505 buy cytotec
 
Jual Obat Aborsi Bandung (Asli No.1) Wa 082134680322 Klinik Obat Penggugur Ka...
Jual Obat Aborsi Bandung (Asli No.1) Wa 082134680322 Klinik Obat Penggugur Ka...Jual Obat Aborsi Bandung (Asli No.1) Wa 082134680322 Klinik Obat Penggugur Ka...
Jual Obat Aborsi Bandung (Asli No.1) Wa 082134680322 Klinik Obat Penggugur Ka...
 
Statistics Informed Decisions Using Data 5th edition by Michael Sullivan solu...
Statistics Informed Decisions Using Data 5th edition by Michael Sullivan solu...Statistics Informed Decisions Using Data 5th edition by Michael Sullivan solu...
Statistics Informed Decisions Using Data 5th edition by Michael Sullivan solu...
 
1:1原版定制伦敦政治经济学院毕业证(LSE毕业证)成绩单学位证书留信学历认证
1:1原版定制伦敦政治经济学院毕业证(LSE毕业证)成绩单学位证书留信学历认证1:1原版定制伦敦政治经济学院毕业证(LSE毕业证)成绩单学位证书留信学历认证
1:1原版定制伦敦政治经济学院毕业证(LSE毕业证)成绩单学位证书留信学历认证
 
obat aborsi Bontang wa 081336238223 jual obat aborsi cytotec asli di Bontang6...
obat aborsi Bontang wa 081336238223 jual obat aborsi cytotec asli di Bontang6...obat aborsi Bontang wa 081336238223 jual obat aborsi cytotec asli di Bontang6...
obat aborsi Bontang wa 081336238223 jual obat aborsi cytotec asli di Bontang6...
 

Tortoise IS The New Black

  • 2. Any fool can complicate things. It takes genius to simplify them. Albert Einstein
  • 3. 1. A Walk thru of the Data. 2. Style Quiz Funnel. 3. Home Try-On Funnel. 4. Actionable Insights for Warby Parker. CONTENTS
  • 4. A random walk thru The Data
  • 5. Three fields with text data: ● Question ● User_id ● Response The survey table contains 5 survey questions along with 1986 responses from 500 participants. The table below shows that although 500 participates started the survey, only 270 finished it. 230 participants quit during the 5 question quiz. SELECT * FROM survey LIMIT 10 ; Q 2: What is the number of responses for each question in the quiz? SELECT question, COUNT (user_id) AS "User IDs", COUNT (response) AS "Responses" FROM survey GROUP BY question ; SELECT COUNT(DISTINCT user_id) FROM survey ; Q 1: What columns does the [survey] table have? The Survey Table
  • 6. Drop Offs: Look at the Completion Rates. When you look at completion rates for each question the differences are not as pronounced as when you convert the same metric to a drop off rate. Question 5 has the lowest completion rate, which is sad for the 91 people who came so close to finishing but didn’t! The second significant drop off occurs for question 3; 98 participants quit on this question. Almost 40% (37.8%) of participants end the survey on these two questions. Why is that? Questions Unique Users % of Users Completion Rate Drop Off 1. What are you looking for? 500 100% n/a n/a 2. What’s your fit? 475 95% 95% 5% 3. Which shapes do you like? 380 76% 80% 20% 4. Which colors do you like? 361 72% 95% 5% 5. When was your last eye exam? 270 54% 75% 25% Q 3.a: Which questions of the quiz have a lower completion rate? -- No SQL for this question
  • 7. The Style Quiz Funnel
  • 8. The most common results from the Style Quiz.
  • 9. SELECT question AS Question, response AS Response, COUNT (response) AS "Response Count" FROM survey WHERE Question like “1.%" GROUP BY response ORDER BY "Response Count" DESC ; 209 49 (9.8%)
  • 10.
  • 11. SELECT question AS Question, response AS Response, COUNT (response) AS "Response Count" FROM survey WHERE Question like “2.%" GROUP BY response ORDER BY "Response Count" DESC ; 132 47 (9.9%) 88 Drop Off: 5%
  • 12.
  • 13. SELECT question AS Question, response AS Response, COUNT (response) AS "Response Count" FROM survey WHERE Question like "3.%" GROUP BY response ORDER BY "Response Count" DESC ; 91 29 (7.6%) 119 Drop Off: 20%
  • 14.
  • 15. SELECT question AS Question, response AS Response, COUNT (response) AS "Response Count", COUNT(user_id) FROM survey WHERE Question like "4.%" GROUP BY response ORDER BY "Response Count" DESC ; SELECT user_id, COUNT(response) AS "RES" FROM survey WHERE question like "4.%" GROUP BY user_id ORDER BY 2 DESC ; 0 (0%) 112 Drop Off: 5% 69 27360 Why? Is it because they are cheap? I don’t think so! Despite this direction, no participants choose more than one color. I took the quiz myself, and missed this direction as well.
  • 16.
  • 17. SELECT question AS Question, response AS Response, COUNT (response) AS "Response Count", COUNT (user_id) FROM survey WHERE Question like "5.%" GROUP BY response ORDER BY "Response Count" DESC ; 36 (10%) 37 Drop Off: 25% 56 Years Years Years
  • 18. The Survey Table On question 3, about shape, we see a significant drop off with only 7% selecting no preference (avg. no preference selection is around 10%). I thought selecting “No preference” might shed light on survey fatigue, No luck. On question 5, about the last eye exam, there is significant drop off as well. Most respondents answered less than a year. That isn’t hard to remember. A case can be made for fatigue. I don’t see a clear reason for why. I would test the order of the questions. Possibly, these question are more difficult to answer. Maybe users start to fatigue on the third question. The colors question showed strong participation. Try using that as the third question. I strongly recommend testing the order of questions. Questions Unique Users % of Users Completion Rate Drop Off 1. What are you looking for? 500 100% n/a n/a 2. What’s your fit? 475 95% 95% 5% 3. Which shapes do you like? 380 76% 80% 20% 4. Which colors do you like? 361 72% 95% 5% 5. When was your last eye exam? 270 54% 75% 25% Q 3.b: Why? -- No SQL for this question
  • 19. The Home Try-On Funnel
  • 20. This data funnel pulls from data organized into three tables. The quiz table has five fields with text data: user_id, style, fit, shape, & color. The home_try_on table has three fields with text data: user_id, number_of_pairs, & address. The purchase table has six fields with text and integer data: user_id, product_id, style, model_name, color, price. Note that below is the schema, not the results of the query. The results were not material to this question. SELECT * FROM quiz LIMIT 5 ; SELECT * FROM home_try_on LIMIT 5 ; SELECT * FROM purchase LIMIT 5 ; Q 4: What are the column names [of each table]? The Home Try-On Tables
  • 21. Overall Conversion Rates Quiz Home Trial Purchase Unique Users 1000 750 495 Conversion Rate n/a 75% 66% Q 6.a: calculate overall conversion rates by aggregating across all rows and compare conversions. WITH base_table AS( SELECT q.user_id, h.user_id IS NOT NULL AS 'is_home_try_on', h.number_of_pairs AS 'AB_TEST', b.user_id IS NOT NULL AS 'is_purchase' FROM quiz as q LEFT JOIN home_try_on as h ON q.user_id = h.user_id LEFT JOIN purchase as b -- 'b' for buy. p is too close to q ON q.user_id = b.user_id ) SELECT --AB_TEST, COUNT(user_id) as "Quiz", SUM(CASE WHEN is_home_try_on = 1 THEN 1 ELSE 0 END) as "Home Trial", SUM(CASE WHEN is_purchase = 1 THEN 1 ELSE 0 END) as "Purchase" FROM base_table ; Of those users that took the quiz, 75% moved on to the home trial. Of those users that completed the home trial, 66% made a purchase. This 66% is misleading. We A/B tested sending out 5 trail pairs of glasses VS 3 pairs. The results are unmistakable.
  • 22. What are some For Warby Parker actionable insights ?
  • 23. Five Pairs Drive More Sales! At almost 80% sales conversion, offering 5 trail pairs clearly drives more sales than the standard offering of 3 trial pairs. The results of the A/B test demonstrate this outcome with a 1% margin of error. Offer 5 trail pairs. A/B Test Home Trial Purchase Conversion 3 pairs 379 201 53.0% 5 pairs 371 294 79.2% All 750 495 66% This is significant at a 99% significance level. Q 6.a: calculate the difference in purchase rates between customers who had 3 “number_of_pairs” with ones who had 5. WITH base_table AS( SELECT q.user_id, h.user_id IS NOT NULL AS 'is_home_try_on', h.number_of_pairs AS 'AB_TEST', b.user_id IS NOT NULL AS 'is_purchase' FROM quiz as q LEFT JOIN home_try_on as h ON q.user_id = h.user_id LEFT JOIN purchase as b -- 'b' for buy. p is too close to q ON q.user_id = b.user_id ) SELECT AB_TEST, COUNT(user_id) as "Quiz", SUM(CASE WHEN is_home_try_on = 1 THEN 1 ELSE 0 END) as "Home Trial", SUM(CASE WHEN is_purchase = 1 THEN 1 ELSE 0 END) as "Purchase" FROM base_table GROUP BY AB_TEST HAVING "Home Trial" > 0 ORDER BY AB_TEST ;
  • 24. SELECT model_name AS "Model Name", COUNT (user_id) AS Total, SUM(CASE WHEN color = "Elderflower Crystal" then 1 else 0 END) AS "Elderflower Crystal", SUM (CASE WHEN color = "Jet Black" AND style = "Women's Styles" THEN 1 ELSE 0 END) AS "Jet Black (W)", SUM (CASE WHEN color = "Pearled Tortoise" THEN 1 ELSE 0 END) AS "Perled Tortoise", SUM (CASE WHEN color = "Rose Crystal" THEN 1 ELSE 0 END) AS "Rose Crystal", SUM (CASE WHEN color = "Rosewood Tortoise" THEN 1 ELSE 0 END) AS "Rosewood Tortoise" FROM purchase GROUP BY model_name ORDER BY 2 DESC ; Tortoise IS the new black. For women, there is a clear preference for the Eugene Narrow Rosewood Tortoise over the control pair (Lucy Jet Black) with a 5% margin of error. The same frames in the rosewood crystal color are the second most popular, besting the control with a 10% margin of error. Tortoise and black colors are the most popular for both men and women. The survey shows a measurable statistically significant preference for these colors compared to the fourth place “Neutral” color. Women preferred tortoise to black with a 10% margin of error.
  • 25. SELECT model_name AS "Model Name", COUNT (user_id) AS Total, SUM(CASE WHEN color = "Driftwood Fade" THEN 1 ELSE 0 END) AS Driftwood, SUM(CASE WHEN color = "Endangered Tortoise" THEN 1 ELSE 0 END) AS "Endangered Tortoise", SUM(CASE WHEN color = "Jet Black" AND style = "Men's Styles" THEN 1 ELSE 0 END) AS "Jet Black (M)", SUM(CASE WHEN color = "Layered Tortoise Matte" THEN 1 ELSE 0 END) AS "Layered Tortoise Matte", SUM(CASE WHEN color = "Sea Glass Gray" THEN 1 ELSE 0 END) AS "Sea Glass Gray" FROM purchase GROUP BY 1 ORDER BY 2 DESC ; Men are Indiferent . . . for now. For the men, the most purchased item is the Dawes Driftwood Fade glasses. There is a measurable preference for these glasses compared to a control group of glasses. Brady Layered Tortoise placed second and was statistically indistinguishable from the control group or the Dawes. This matches our expectations. Men’s preference for tortoise over black was slightly higher but indistinguishable with any meaningful measure of confidence. Pay attention to this trend, we might still be in the early stages.
  • 26. Take-aways 1. Offer 5 pairs of glasses for the home trial (Slide 23). 2. Raise prices for Tortoise products in the women’s style lines. Early adopters will not be price sensitive. 3. Monitor Tortoise products in the men’s lines. Test prices. Early adopters will not be price sensitive. 4. Do some testing with the order of questions in the survey quiz. 5. The survey identifies that participants can identify more than one color, but none did. This is an issue with the design of the quiz.