SlideShare uma empresa Scribd logo
1 de 68
Baixar para ler offline
10 — Analytics & Optimization
From Code to Product
gidgreen.com/course
Lecture 10
•  Introduction
•  Data collection
•  Website metrics
•  Optimization
•  Competitive intelligence
•  Surveys
•  Tools and books
From Code to Product Lecture 10 — Analytics— Slide 2 gidgreen.com/course
Why analytics?
•  Quantify success/failure
– For yourselves
– For investors
– Against competition
•  Scientific decisions
– No blind faith
– Fewer arguments
– Avoid HiPPO = highest paid person’s opinion
From Code to Product Lecture 10 — Analytics— Slide 3 gidgreen.com/course
Good analytics
•  Simple
•  Few in number
•  Relevant
•  Unambiguous
•  Actionable
•  Instant (or nearly)
•  Repeatable
From Code to Product Lecture 10 — Analytics— Slide 4 gidgreen.com/course
AARRR — Metrics for pirates
From Code to Product Lecture 10 — Analytics— Slide 5 gidgreen.com/course
Acquisition Site visit or app download
Activation Registration or usage
Retention Repeat usage
Referral Brings other people
Revenue Generate cash
DaveMcClure,500Startups
Some quotes
“What gets measured, gets managed.”
— Peter Drucker
“The only metrics that entrepreneurs
should invest energy in collecting are
those that help them make decisions.”
— Eric Ries, The Lean Startup
From Code to Product Lecture 10 — Analytics— Slide 6 gidgreen.com/course
Lecture 10
•  Introduction
•  Data collection
•  Website metrics
•  Optimization
•  Competitive intelligence
•  Surveys
•  Tools and books
From Code to Product Lecture 10 — Analytics— Slide 7 gidgreen.com/course
In-app analytics
•  Home rolled or third party
•  Store usage information locally
– ‘Call home’ when online
•  Privacy concerns
– Confirmation dialog?
•  Complete access to device
– But you will be caught!
•  Problem: slow iteration
From Code to Product Lecture 10 — Analytics— Slide 8 gidgreen.com/course
In-app integration
From Code to Product Lecture 10 — Analytics— Slide 9 gidgreen.com/course
Reporting app events
From Code to Product Lecture 10 — Analytics— Slide 10 gidgreen.com/course
Web analytics
•  All activity visible to site
– Users don’t expect privacy
•  Web servers log requests
– Also: Javascript solutions
•  Page view centric
– Other events require integration
– Coffee break?
– Events not sessions
From Code to Product Lecture 10 — Analytics— Slide 11 gidgreen.com/course
A web server log line
www.websudoku.com
24.186.55.113
[06/May/2012:08:13:02 -0400]
"GET / HTTP/1.1”
200
1045
"http://www.google.com/search?q=sudoku”
"Mozilla/5.0 (iPhone; CPU iPhone OS 5_1
like Mac OS X) AppleWebKit/534.46 (KHTML,
like Gecko) Mobile/9B179 Safari/7534.48.3"
From Code to Product Lecture 10 — Analytics— Slide 12 gidgreen.com/course
Javascript tracking code
<script type="text/javascript”>
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-1165533-3']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type =
'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ?
'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(ga, s);
})();
</script>
From Code to Product Lecture 10 — Analytics— Slide 13 gidgreen.com/course
Web metrics alternatives
From Code to Product Lecture 4 — UI Design— Slide 14 gidgreen.com/course
Server logs Javascript Home-made
Integration None Via HTML Server code
Convenience
Download +
analyze
Web-based
access
Up to you
Delay None Up to 24 hours Up to you
Reporting Varies Advanced Up to you
Other events Hard Via API Easy
Data leakage None Total! None
Track web users by…
•  IP address
– Given for every web request
– Good for geography
– But: proxies, classrooms, router resets
•  Cookies
– Track user browser over long term
– But: clearing, multi-browsing, first request
– Customization of web server
From Code to Product Lecture 10 — Analytics— Slide 15 gidgreen.com/course
Track web users by…
•  Log in
– Reliable for registered users
– But: anonymous users, multiple accounts
– Requires custom logging tools
•  Solution: combine!
– Intelligently tie IPs, cookies and accounts
– Example: user registration
•  Data always incomplete
From Code to Product Lecture 10 — Analytics— Slide 16 gidgreen.com/course
Lecture 10
•  Introduction
•  Data collection
•  Website metrics
•  Optimization
•  Competitive intelligence
•  Surveys
•  Tools and books
From Code to Product Lecture 10 — Analytics— Slide 17 gidgreen.com/course
Basic website metrics
From Code to Product Lecture 10 — Analytics— Slide 18 gidgreen.com/course
Immediate questions
•  When does one visit end?
– GA: 30 minutes without activity
•  What makes a visitor unique?
– GA: Tracking cookie
•  How is duration calculated?
– GA: Time between first and last pages
•  What makes a visitor new?
– GA: Never visited your site before
From Code to Product Lecture 10 — Analytics— Slide 19 gidgreen.com/course
Geography
From Code to Product Lecture 6 — BM — Advertising— Slide 20 gidgreen.com/course
Demographics
From Code to Product Lecture 6 — BM — Advertising— Slide 21 gidgreen.com/course
Frequency report
From Code to Product Lecture 10 — Analytics— Slide 22 gidgreen.com/course
Sources of traffic
•  Type-in (no referrer)
– Includes browser bookmarks
•  Search engines
– Navigational search = type-in
•  Referrals
– Website links or social media
•  Paid advertising
•  Email campaigns
From Code to Product Lecture 10 — Analytics— Slide 23 gidgreen.com/course
The multitouch problem
•  There’s history before the referrer
– Who deserves the credit, e.g. affiliates
•  So who gets the credit?
– Last click (standard)
– First click (unrealistic)
– Even split
– Split weighted to last
From Code to Product Lecture 10 — Analytics— Slide 24 gidgreen.com/course
Search engine queries
From Code to Product Lecture 10 — Analytics— Slide 25 gidgreen.com/course
Also: internal site search
Popular pages
From Code to Product Lecture 10 — Analytics— Slide 26 gidgreen.com/course
Landing/entry pages
From Code to Product Lecture 10 — Analytics— Slide 27 gidgreen.com/course
“You can’t choose your home page” — A. Kaushik
Clickmaps and heatmaps
From Code to Product Lecture 10 — Analytics— Slide 28 gidgreen.com/course
Conversion funnel
From Code to Product Lecture 10 — Analytics— Slide 29 gidgreen.com/course
Source:www.searchenginejournal.com
Sampling methods
•  Popular site => lots of data
– Burden to collect, slow to analyze
•  Don’t record all events
– Choose important pages
– Random subset of visitors
– Random subset of pageviews
•  Sub-sample when analyzing
– By page or visitor
From Code to Product Lecture 10 — Analytics— Slide 30 gidgreen.com/course
Staleness due to changes in…
•  Content
•  User familiarity
– Early adopters vs ...
•  Search engine rankings
•  Market needs
•  Devices
•  Cookies
From Code to Product Lecture 10 — Analytics— Slide 31 gidgreen.com/course
Lecture 10
•  Introduction
•  Data collection
•  Website metrics
•  Optimization
•  Competitive intelligence
•  Surveys
•  Tools and books
From Code to Product Lecture 10 — Analytics— Slide 32 gidgreen.com/course
Optimization
•  You don’t know how users behave
– Example: show price early on?
•  Small changes => big results
– But which small changes?
•  Use a scientific methodology
– Easy to set up
– Easy to get report
– Statistical significance
From Code to Product Lecture 10 — Analytics— Slide 33 gidgreen.com/course
Wording example
From Code to Product Lecture 10 — Analytics— Slide 34 gidgreen.com/course
Source:http://www.dustincurtis.com/
you_should_follow_me_on_twitter.html
A/B testing
•  Two parallel variations
– Current vs challenger
•  Assign randomly and evenly
– What about previous visitors?
– Repeat requests within a session?
•  Set test length in advance
– Length of time or number of visits
•  Chi-squared (or similar) test
From Code to Product Lecture 10 — Analytics— Slide 35 gidgreen.com/course
Contingency table
Product
purchased
Not
purchased
9 575
13 563
From Code to Product Lecture 10 — Analytics— Slide 36 gidgreen.com/course
Multivariate testing
From Code to Product Lecture 10 — Analytics— Slide 37 gidgreen.com/course
Source:http://www.getelastic.com/testing-
part-1/
Multivariate testing
•  Best to use third-party tool
•  Full factorial vs partial factorial
– Certainty vs efficiency
From Code to Product Lecture 10 — Analytics— Slide 38 gidgreen.com/course
Optimization pitfalls
•  Preconception driven
– Too many similar tests
– Checking before it’s done
•  Wrong goal
– e.g. started vs completed purchases
•  Unfair test
– Different time periods
– New vs returning users
From Code to Product Lecture 10 — Analytics— Slide 39 gidgreen.com/course
More complex tests
•  Non-binary outcomes
– Size of purchase, length of stay
•  Cohort / longitudinal tests
•  Whole-site multivariate testing
•  Pricing
– How to prevent a riot?
•  Spot diminishing returns
– Focus on registration, payment, etc…
From Code to Product Lecture 10 — Analytics— Slide 40 gidgreen.com/course
Lecture 10
•  Introduction
•  Data collection
•  Website metrics
•  Optimization
•  Competitive intelligence
•  Surveys
•  Tools and books
From Code to Product Lecture 10 — Analytics— Slide 41 gidgreen.com/course
Finding competitors
From Code to Product Lecture 10 — Analytics— Slide 42 gidgreen.com/course
Searches for product
From Code to Product Lecture 10 — Analytics— Slide 43 gidgreen.com/course
But…
From Code to Product Lecture 10 — Analytics— Slide 44 gidgreen.com/course
Ranking for general searches
From Code to Product Lecture 10 — Analytics— Slide 45 gidgreen.com/course
App Store searches
From Code to Product Lecture 10 — Analytics— Slide 46 gidgreen.com/course
Online mentions
From Code to Product Lecture 10 — Analytics— Slide 47 gidgreen.com/course
Website traffic
From Code to Product Lecture 10 — Analytics— Slide 48 gidgreen.com/course
Website traffic
From Code to Product Lecture 10 — Analytics— Slide 49 gidgreen.com/course
Downloads/installs
From Code to Product Lecture 10 — Analytics— Slide 50 gidgreen.com/course
Registrations
From Code to Product Lecture 10 — Analytics— Slide 51 gidgreen.com/course
Revenue
From Code to Product Lecture 10 — Analytics— Slide 52 gidgreen.com/course
Also: UK
private
companies
Revenue
From Code to Product Lecture 10 — Analytics— Slide 53 gidgreen.com/course
$200k
Lecture 10
•  Introduction
•  Data collection
•  Website metrics
•  Optimization
•  Competitive intelligence
•  Surveys
•  Tools and books
From Code to Product Lecture 10 — Analytics— Slide 54 gidgreen.com/course
Why surveys?
•  Customer feedback en masse
– Initiated by you (email/web)
– Avoid vocal minority
•  Understand market
– Job descriptions
– Size of company
– Use of product
•  How did you find me?
From Code to Product Lecture 10 — Analytics— Slide 55 gidgreen.com/course
Why surveys?
•  Help with strategic decisions
– Premium offerings
– Major new versions
•  Customer satisfaction
– Quantify word of mouth
•  Understand abandonment
– But hard to motivate response
•  Open-ended feedback
From Code to Product Lecture 10 — Analytics— Slide 56 gidgreen.com/course
Sources of bias
•  Non-response bias
– Busy customer ≠ bad customer
•  Response bias
– Word questions objectively
•  Predictions vs facts
– Would you pay? How much?
•  Snapshot in time
– Lots of data vs ongoing data
From Code to Product Lecture 10 — Analytics— Slide 57 gidgreen.com/course
Getting users to survey
•  Prominent link in product
•  Prize giveaway
•  Response to support email
•  Mass mailing
•  Cold calling
•  Bias bias bias ...
From Code to Product Lecture 10 — Analytics— Slide 58 gidgreen.com/course
Good survey design
•  Keep it short!
– Focus on objectives
•  Minimize burden on user
– Easy questions, especially at start
– Multiple choice
•  Make it feel anonymous
– Social desirability bias
•  Free text at end
From Code to Product Lecture 10 — Analytics— Slide 59 gidgreen.com/course
Bad questions
When did you last go online and buy something?
Would you buy our superior product?
Are you willing to pay for things online?
If we created a reliable and bug-free product which
had all of the features that you requested in
response to the questions in this survey, would you
be willing to pay us $10 per month for it?
What are you looking for?
From Code to Product Lecture 10 — Analytics— Slide 60 gidgreen.com/course
Analyzing survey data
•  Manual review
– At least for free text field
•  Histograms
•  Pairwise correlations
– Especially against price
•  Clustering
– Identify price points
– Decide who is worth serving
From Code to Product Lecture 10 — Analytics— Slide 61 gidgreen.com/course
Pairwise correlation
From Code to Product Lecture 10 — Analytics— Slide 62 gidgreen.com/course
R² = 0.04028
0
1
$0 $20 $40 $60 $80
MultipleRecipients?
Mini surveys
From Code to Product Lecture 10 — Analytics— Slide 63 gidgreen.com/course
Lecture 10
•  Introduction
•  Data collection
•  Website metrics
•  Optimization
•  Competitive intelligence
•  Surveys
•  Tools and books
From Code to Product Lecture 10 — Analytics— Slide 64 gidgreen.com/course
Analytics tools
From Code to Product Lecture 10 — Analytics— Slide 65 gidgreen.com/course
Other tools
From Code to Product Lecture 10 — Analytics— Slide 66 gidgreen.com/course
Books
From Code to Product Lecture 10 — Analytics— Slide 67 gidgreen.com/course
We didn’t cover…
•  Social media analytics
– Popularity
– Sentiment analysis
•  Video analytics
– Attention
– Embeds
•  Content reuse
From Code to Product Lecture 10 — Analytics— Slide 68 gidgreen.com/course

Mais conteúdo relacionado

Semelhante a Analytics and Optimization 2013

Search Engine Visibility 2013
Search Engine Visibility 2013Search Engine Visibility 2013
Search Engine Visibility 2013gidgreen
 
Google Analytics SDDU Seminar
Google Analytics SDDU SeminarGoogle Analytics SDDU Seminar
Google Analytics SDDU SeminarJames Little
 
Google Analytics 4 and BigQuery: The New Kids On The Block.pptx
Google Analytics 4 and BigQuery: The New Kids On The Block.pptxGoogle Analytics 4 and BigQuery: The New Kids On The Block.pptx
Google Analytics 4 and BigQuery: The New Kids On The Block.pptxOmi Sido
 
Google Analytics - Webmaster Tools Pro Setup & Tips
Google Analytics -  Webmaster Tools Pro Setup & TipsGoogle Analytics -  Webmaster Tools Pro Setup & Tips
Google Analytics - Webmaster Tools Pro Setup & TipsRank Fuse Digital Marketing
 
Pubcon Florida 2018 | CSI: Forensic SEO Audits
Pubcon Florida 2018 | CSI: Forensic SEO AuditsPubcon Florida 2018 | CSI: Forensic SEO Audits
Pubcon Florida 2018 | CSI: Forensic SEO AuditsRenee Girard
 
Search Engine Visibility
Search Engine VisibilitySearch Engine Visibility
Search Engine Visibilitygidgreen
 
Power Up Your Competitive Price Intelligence With Web Data
Power Up Your Competitive Price Intelligence With Web DataPower Up Your Competitive Price Intelligence With Web Data
Power Up Your Competitive Price Intelligence With Web DataConnotate
 
MKEsearch 2018 | CSI: Forensic SEO Audits
MKEsearch 2018 | CSI: Forensic SEO AuditsMKEsearch 2018 | CSI: Forensic SEO Audits
MKEsearch 2018 | CSI: Forensic SEO AuditsRenee Girard
 
Analytics Implementation Roadmap
Analytics Implementation RoadmapAnalytics Implementation Roadmap
Analytics Implementation RoadmapJoel Benavidez
 
Marketo: hands on with Google Analytics
Marketo: hands on with Google AnalyticsMarketo: hands on with Google Analytics
Marketo: hands on with Google AnalyticsStijn Heijthuijsen
 
Website Parameters.pptx
Website Parameters.pptxWebsite Parameters.pptx
Website Parameters.pptxASHAVI2
 
Primed-AP Methodology
Primed-AP MethodologyPrimed-AP Methodology
Primed-AP MethodologyCDO Advisors
 
Using Web Data to Drive Revenue and Reduce Costs
Using Web Data to Drive Revenue and Reduce CostsUsing Web Data to Drive Revenue and Reduce Costs
Using Web Data to Drive Revenue and Reduce CostsConnotate
 
Marketing for Startups 2013
Marketing for Startups 2013Marketing for Startups 2013
Marketing for Startups 2013gidgreen
 
Predictive Conversion Modeling - Lifting Web Analytics to the next level
Predictive Conversion Modeling - Lifting Web Analytics to the next levelPredictive Conversion Modeling - Lifting Web Analytics to the next level
Predictive Conversion Modeling - Lifting Web Analytics to the next levelPetri Mertanen
 
Using Web Data to Drive Revenue and Reduce Costs
Using Web Data to Drive Revenue and Reduce CostsUsing Web Data to Drive Revenue and Reduce Costs
Using Web Data to Drive Revenue and Reduce CostsConnotate
 
The Software Entrepreneurship Process 2013
The Software Entrepreneurship Process 2013The Software Entrepreneurship Process 2013
The Software Entrepreneurship Process 2013gidgreen
 
Web analytics masterclass Howest
Web analytics masterclass HowestWeb analytics masterclass Howest
Web analytics masterclass HowestEvelien De Mey
 
How Online Retailers Can Benefit from Enhanced Ecommerce?
How Online Retailers Can Benefit from Enhanced Ecommerce?How Online Retailers Can Benefit from Enhanced Ecommerce?
How Online Retailers Can Benefit from Enhanced Ecommerce?Tatvic Analytics
 

Semelhante a Analytics and Optimization 2013 (20)

Search Engine Visibility 2013
Search Engine Visibility 2013Search Engine Visibility 2013
Search Engine Visibility 2013
 
Google Analytics SDDU Seminar
Google Analytics SDDU SeminarGoogle Analytics SDDU Seminar
Google Analytics SDDU Seminar
 
Google Analytics 4 and BigQuery: The New Kids On The Block.pptx
Google Analytics 4 and BigQuery: The New Kids On The Block.pptxGoogle Analytics 4 and BigQuery: The New Kids On The Block.pptx
Google Analytics 4 and BigQuery: The New Kids On The Block.pptx
 
Google Analytics - Webmaster Tools Pro Setup & Tips
Google Analytics -  Webmaster Tools Pro Setup & TipsGoogle Analytics -  Webmaster Tools Pro Setup & Tips
Google Analytics - Webmaster Tools Pro Setup & Tips
 
Pubcon Florida 2018 | CSI: Forensic SEO Audits
Pubcon Florida 2018 | CSI: Forensic SEO AuditsPubcon Florida 2018 | CSI: Forensic SEO Audits
Pubcon Florida 2018 | CSI: Forensic SEO Audits
 
Search Engine Visibility
Search Engine VisibilitySearch Engine Visibility
Search Engine Visibility
 
Power Up Your Competitive Price Intelligence With Web Data
Power Up Your Competitive Price Intelligence With Web DataPower Up Your Competitive Price Intelligence With Web Data
Power Up Your Competitive Price Intelligence With Web Data
 
MKEsearch 2018 | CSI: Forensic SEO Audits
MKEsearch 2018 | CSI: Forensic SEO AuditsMKEsearch 2018 | CSI: Forensic SEO Audits
MKEsearch 2018 | CSI: Forensic SEO Audits
 
Analytics Implementation Roadmap
Analytics Implementation RoadmapAnalytics Implementation Roadmap
Analytics Implementation Roadmap
 
Marketo: hands on with Google Analytics
Marketo: hands on with Google AnalyticsMarketo: hands on with Google Analytics
Marketo: hands on with Google Analytics
 
Website Parameters.pptx
Website Parameters.pptxWebsite Parameters.pptx
Website Parameters.pptx
 
Primed-AP Methodology
Primed-AP MethodologyPrimed-AP Methodology
Primed-AP Methodology
 
Using Web Data to Drive Revenue and Reduce Costs
Using Web Data to Drive Revenue and Reduce CostsUsing Web Data to Drive Revenue and Reduce Costs
Using Web Data to Drive Revenue and Reduce Costs
 
Marketing for Startups 2013
Marketing for Startups 2013Marketing for Startups 2013
Marketing for Startups 2013
 
Predictive Conversion Modeling - Lifting Web Analytics to the next level
Predictive Conversion Modeling - Lifting Web Analytics to the next levelPredictive Conversion Modeling - Lifting Web Analytics to the next level
Predictive Conversion Modeling - Lifting Web Analytics to the next level
 
Using Web Data to Drive Revenue and Reduce Costs
Using Web Data to Drive Revenue and Reduce CostsUsing Web Data to Drive Revenue and Reduce Costs
Using Web Data to Drive Revenue and Reduce Costs
 
The Software Entrepreneurship Process 2013
The Software Entrepreneurship Process 2013The Software Entrepreneurship Process 2013
The Software Entrepreneurship Process 2013
 
Web analytics masterclass Howest
Web analytics masterclass HowestWeb analytics masterclass Howest
Web analytics masterclass Howest
 
Data Driven SEO - Amanda King, Optus
Data Driven SEO - Amanda King, OptusData Driven SEO - Amanda King, Optus
Data Driven SEO - Amanda King, Optus
 
How Online Retailers Can Benefit from Enhanced Ecommerce?
How Online Retailers Can Benefit from Enhanced Ecommerce?How Online Retailers Can Benefit from Enhanced Ecommerce?
How Online Retailers Can Benefit from Enhanced Ecommerce?
 

Mais de gidgreen

Selling Advertising 2013
Selling Advertising 2013Selling Advertising 2013
Selling Advertising 2013gidgreen
 
Selling Products and Services 2013
Selling Products and Services 2013Selling Products and Services 2013
Selling Products and Services 2013gidgreen
 
User Interface Design 2013
User Interface Design 2013User Interface Design 2013
User Interface Design 2013gidgreen
 
User Interface Principles 2013
User Interface Principles 2013User Interface Principles 2013
User Interface Principles 2013gidgreen
 
Introduction to Software Products and Startups 2013
Introduction to Software Products and Startups 2013Introduction to Software Products and Startups 2013
Introduction to Software Products and Startups 2013gidgreen
 
Question2Answer - September 2012
Question2Answer - September 2012Question2Answer - September 2012
Question2Answer - September 2012gidgreen
 
Marketing for Startups
Marketing for StartupsMarketing for Startups
Marketing for Startupsgidgreen
 
Selling Products and Services
Selling Products and ServicesSelling Products and Services
Selling Products and Servicesgidgreen
 
Advertising as a Business Model
Advertising as a Business ModelAdvertising as a Business Model
Advertising as a Business Modelgidgreen
 
Localization and Internationalization
Localization and InternationalizationLocalization and Internationalization
Localization and Internationalizationgidgreen
 
User Interface Principles
User Interface PrinciplesUser Interface Principles
User Interface Principlesgidgreen
 
The Software Entrepreneurship Process
The Software Entrepreneurship ProcessThe Software Entrepreneurship Process
The Software Entrepreneurship Processgidgreen
 
Introduction to Software Products and Startups
Introduction to Software Products and StartupsIntroduction to Software Products and Startups
Introduction to Software Products and Startupsgidgreen
 

Mais de gidgreen (13)

Selling Advertising 2013
Selling Advertising 2013Selling Advertising 2013
Selling Advertising 2013
 
Selling Products and Services 2013
Selling Products and Services 2013Selling Products and Services 2013
Selling Products and Services 2013
 
User Interface Design 2013
User Interface Design 2013User Interface Design 2013
User Interface Design 2013
 
User Interface Principles 2013
User Interface Principles 2013User Interface Principles 2013
User Interface Principles 2013
 
Introduction to Software Products and Startups 2013
Introduction to Software Products and Startups 2013Introduction to Software Products and Startups 2013
Introduction to Software Products and Startups 2013
 
Question2Answer - September 2012
Question2Answer - September 2012Question2Answer - September 2012
Question2Answer - September 2012
 
Marketing for Startups
Marketing for StartupsMarketing for Startups
Marketing for Startups
 
Selling Products and Services
Selling Products and ServicesSelling Products and Services
Selling Products and Services
 
Advertising as a Business Model
Advertising as a Business ModelAdvertising as a Business Model
Advertising as a Business Model
 
Localization and Internationalization
Localization and InternationalizationLocalization and Internationalization
Localization and Internationalization
 
User Interface Principles
User Interface PrinciplesUser Interface Principles
User Interface Principles
 
The Software Entrepreneurship Process
The Software Entrepreneurship ProcessThe Software Entrepreneurship Process
The Software Entrepreneurship Process
 
Introduction to Software Products and Startups
Introduction to Software Products and StartupsIntroduction to Software Products and Startups
Introduction to Software Products and Startups
 

Último

Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...apidays
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfsudhanshuwaghmare1
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptxHampshireHUG
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProduct Anonymous
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)wesley chun
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonAnna Loughnan Colquhoun
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc
 
Developing An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of BrazilDeveloping An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of BrazilV3cube
 
Advantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessAdvantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessPixlogix Infotech
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...DianaGray10
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...apidays
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century educationjfdjdjcjdnsjd
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationRadu Cotescu
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024The Digital Insurer
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Miguel Araújo
 
HTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation StrategiesHTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation StrategiesBoston Institute of Analytics
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityPrincipled Technologies
 

Último (20)

Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
Developing An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of BrazilDeveloping An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of Brazil
 
Advantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessAdvantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your Business
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
HTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation StrategiesHTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation Strategies
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 

Analytics and Optimization 2013

  • 1. 10 — Analytics & Optimization From Code to Product gidgreen.com/course
  • 2. Lecture 10 •  Introduction •  Data collection •  Website metrics •  Optimization •  Competitive intelligence •  Surveys •  Tools and books From Code to Product Lecture 10 — Analytics— Slide 2 gidgreen.com/course
  • 3. Why analytics? •  Quantify success/failure – For yourselves – For investors – Against competition •  Scientific decisions – No blind faith – Fewer arguments – Avoid HiPPO = highest paid person’s opinion From Code to Product Lecture 10 — Analytics— Slide 3 gidgreen.com/course
  • 4. Good analytics •  Simple •  Few in number •  Relevant •  Unambiguous •  Actionable •  Instant (or nearly) •  Repeatable From Code to Product Lecture 10 — Analytics— Slide 4 gidgreen.com/course
  • 5. AARRR — Metrics for pirates From Code to Product Lecture 10 — Analytics— Slide 5 gidgreen.com/course Acquisition Site visit or app download Activation Registration or usage Retention Repeat usage Referral Brings other people Revenue Generate cash DaveMcClure,500Startups
  • 6. Some quotes “What gets measured, gets managed.” — Peter Drucker “The only metrics that entrepreneurs should invest energy in collecting are those that help them make decisions.” — Eric Ries, The Lean Startup From Code to Product Lecture 10 — Analytics— Slide 6 gidgreen.com/course
  • 7. Lecture 10 •  Introduction •  Data collection •  Website metrics •  Optimization •  Competitive intelligence •  Surveys •  Tools and books From Code to Product Lecture 10 — Analytics— Slide 7 gidgreen.com/course
  • 8. In-app analytics •  Home rolled or third party •  Store usage information locally – ‘Call home’ when online •  Privacy concerns – Confirmation dialog? •  Complete access to device – But you will be caught! •  Problem: slow iteration From Code to Product Lecture 10 — Analytics— Slide 8 gidgreen.com/course
  • 9. In-app integration From Code to Product Lecture 10 — Analytics— Slide 9 gidgreen.com/course
  • 10. Reporting app events From Code to Product Lecture 10 — Analytics— Slide 10 gidgreen.com/course
  • 11. Web analytics •  All activity visible to site – Users don’t expect privacy •  Web servers log requests – Also: Javascript solutions •  Page view centric – Other events require integration – Coffee break? – Events not sessions From Code to Product Lecture 10 — Analytics— Slide 11 gidgreen.com/course
  • 12. A web server log line www.websudoku.com 24.186.55.113 [06/May/2012:08:13:02 -0400] "GET / HTTP/1.1” 200 1045 "http://www.google.com/search?q=sudoku” "Mozilla/5.0 (iPhone; CPU iPhone OS 5_1 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Mobile/9B179 Safari/7534.48.3" From Code to Product Lecture 10 — Analytics— Slide 12 gidgreen.com/course
  • 13. Javascript tracking code <script type="text/javascript”> var _gaq = _gaq || []; _gaq.push(['_setAccount', 'UA-1165533-3']); _gaq.push(['_trackPageview']); (function() { var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); })(); </script> From Code to Product Lecture 10 — Analytics— Slide 13 gidgreen.com/course
  • 14. Web metrics alternatives From Code to Product Lecture 4 — UI Design— Slide 14 gidgreen.com/course Server logs Javascript Home-made Integration None Via HTML Server code Convenience Download + analyze Web-based access Up to you Delay None Up to 24 hours Up to you Reporting Varies Advanced Up to you Other events Hard Via API Easy Data leakage None Total! None
  • 15. Track web users by… •  IP address – Given for every web request – Good for geography – But: proxies, classrooms, router resets •  Cookies – Track user browser over long term – But: clearing, multi-browsing, first request – Customization of web server From Code to Product Lecture 10 — Analytics— Slide 15 gidgreen.com/course
  • 16. Track web users by… •  Log in – Reliable for registered users – But: anonymous users, multiple accounts – Requires custom logging tools •  Solution: combine! – Intelligently tie IPs, cookies and accounts – Example: user registration •  Data always incomplete From Code to Product Lecture 10 — Analytics— Slide 16 gidgreen.com/course
  • 17. Lecture 10 •  Introduction •  Data collection •  Website metrics •  Optimization •  Competitive intelligence •  Surveys •  Tools and books From Code to Product Lecture 10 — Analytics— Slide 17 gidgreen.com/course
  • 18. Basic website metrics From Code to Product Lecture 10 — Analytics— Slide 18 gidgreen.com/course
  • 19. Immediate questions •  When does one visit end? – GA: 30 minutes without activity •  What makes a visitor unique? – GA: Tracking cookie •  How is duration calculated? – GA: Time between first and last pages •  What makes a visitor new? – GA: Never visited your site before From Code to Product Lecture 10 — Analytics— Slide 19 gidgreen.com/course
  • 20. Geography From Code to Product Lecture 6 — BM — Advertising— Slide 20 gidgreen.com/course
  • 21. Demographics From Code to Product Lecture 6 — BM — Advertising— Slide 21 gidgreen.com/course
  • 22. Frequency report From Code to Product Lecture 10 — Analytics— Slide 22 gidgreen.com/course
  • 23. Sources of traffic •  Type-in (no referrer) – Includes browser bookmarks •  Search engines – Navigational search = type-in •  Referrals – Website links or social media •  Paid advertising •  Email campaigns From Code to Product Lecture 10 — Analytics— Slide 23 gidgreen.com/course
  • 24. The multitouch problem •  There’s history before the referrer – Who deserves the credit, e.g. affiliates •  So who gets the credit? – Last click (standard) – First click (unrealistic) – Even split – Split weighted to last From Code to Product Lecture 10 — Analytics— Slide 24 gidgreen.com/course
  • 25. Search engine queries From Code to Product Lecture 10 — Analytics— Slide 25 gidgreen.com/course Also: internal site search
  • 26. Popular pages From Code to Product Lecture 10 — Analytics— Slide 26 gidgreen.com/course
  • 27. Landing/entry pages From Code to Product Lecture 10 — Analytics— Slide 27 gidgreen.com/course “You can’t choose your home page” — A. Kaushik
  • 28. Clickmaps and heatmaps From Code to Product Lecture 10 — Analytics— Slide 28 gidgreen.com/course
  • 29. Conversion funnel From Code to Product Lecture 10 — Analytics— Slide 29 gidgreen.com/course Source:www.searchenginejournal.com
  • 30. Sampling methods •  Popular site => lots of data – Burden to collect, slow to analyze •  Don’t record all events – Choose important pages – Random subset of visitors – Random subset of pageviews •  Sub-sample when analyzing – By page or visitor From Code to Product Lecture 10 — Analytics— Slide 30 gidgreen.com/course
  • 31. Staleness due to changes in… •  Content •  User familiarity – Early adopters vs ... •  Search engine rankings •  Market needs •  Devices •  Cookies From Code to Product Lecture 10 — Analytics— Slide 31 gidgreen.com/course
  • 32. Lecture 10 •  Introduction •  Data collection •  Website metrics •  Optimization •  Competitive intelligence •  Surveys •  Tools and books From Code to Product Lecture 10 — Analytics— Slide 32 gidgreen.com/course
  • 33. Optimization •  You don’t know how users behave – Example: show price early on? •  Small changes => big results – But which small changes? •  Use a scientific methodology – Easy to set up – Easy to get report – Statistical significance From Code to Product Lecture 10 — Analytics— Slide 33 gidgreen.com/course
  • 34. Wording example From Code to Product Lecture 10 — Analytics— Slide 34 gidgreen.com/course Source:http://www.dustincurtis.com/ you_should_follow_me_on_twitter.html
  • 35. A/B testing •  Two parallel variations – Current vs challenger •  Assign randomly and evenly – What about previous visitors? – Repeat requests within a session? •  Set test length in advance – Length of time or number of visits •  Chi-squared (or similar) test From Code to Product Lecture 10 — Analytics— Slide 35 gidgreen.com/course
  • 36. Contingency table Product purchased Not purchased 9 575 13 563 From Code to Product Lecture 10 — Analytics— Slide 36 gidgreen.com/course
  • 37. Multivariate testing From Code to Product Lecture 10 — Analytics— Slide 37 gidgreen.com/course Source:http://www.getelastic.com/testing- part-1/
  • 38. Multivariate testing •  Best to use third-party tool •  Full factorial vs partial factorial – Certainty vs efficiency From Code to Product Lecture 10 — Analytics— Slide 38 gidgreen.com/course
  • 39. Optimization pitfalls •  Preconception driven – Too many similar tests – Checking before it’s done •  Wrong goal – e.g. started vs completed purchases •  Unfair test – Different time periods – New vs returning users From Code to Product Lecture 10 — Analytics— Slide 39 gidgreen.com/course
  • 40. More complex tests •  Non-binary outcomes – Size of purchase, length of stay •  Cohort / longitudinal tests •  Whole-site multivariate testing •  Pricing – How to prevent a riot? •  Spot diminishing returns – Focus on registration, payment, etc… From Code to Product Lecture 10 — Analytics— Slide 40 gidgreen.com/course
  • 41. Lecture 10 •  Introduction •  Data collection •  Website metrics •  Optimization •  Competitive intelligence •  Surveys •  Tools and books From Code to Product Lecture 10 — Analytics— Slide 41 gidgreen.com/course
  • 42. Finding competitors From Code to Product Lecture 10 — Analytics— Slide 42 gidgreen.com/course
  • 43. Searches for product From Code to Product Lecture 10 — Analytics— Slide 43 gidgreen.com/course
  • 44. But… From Code to Product Lecture 10 — Analytics— Slide 44 gidgreen.com/course
  • 45. Ranking for general searches From Code to Product Lecture 10 — Analytics— Slide 45 gidgreen.com/course
  • 46. App Store searches From Code to Product Lecture 10 — Analytics— Slide 46 gidgreen.com/course
  • 47. Online mentions From Code to Product Lecture 10 — Analytics— Slide 47 gidgreen.com/course
  • 48. Website traffic From Code to Product Lecture 10 — Analytics— Slide 48 gidgreen.com/course
  • 49. Website traffic From Code to Product Lecture 10 — Analytics— Slide 49 gidgreen.com/course
  • 50. Downloads/installs From Code to Product Lecture 10 — Analytics— Slide 50 gidgreen.com/course
  • 51. Registrations From Code to Product Lecture 10 — Analytics— Slide 51 gidgreen.com/course
  • 52. Revenue From Code to Product Lecture 10 — Analytics— Slide 52 gidgreen.com/course Also: UK private companies
  • 53. Revenue From Code to Product Lecture 10 — Analytics— Slide 53 gidgreen.com/course $200k
  • 54. Lecture 10 •  Introduction •  Data collection •  Website metrics •  Optimization •  Competitive intelligence •  Surveys •  Tools and books From Code to Product Lecture 10 — Analytics— Slide 54 gidgreen.com/course
  • 55. Why surveys? •  Customer feedback en masse – Initiated by you (email/web) – Avoid vocal minority •  Understand market – Job descriptions – Size of company – Use of product •  How did you find me? From Code to Product Lecture 10 — Analytics— Slide 55 gidgreen.com/course
  • 56. Why surveys? •  Help with strategic decisions – Premium offerings – Major new versions •  Customer satisfaction – Quantify word of mouth •  Understand abandonment – But hard to motivate response •  Open-ended feedback From Code to Product Lecture 10 — Analytics— Slide 56 gidgreen.com/course
  • 57. Sources of bias •  Non-response bias – Busy customer ≠ bad customer •  Response bias – Word questions objectively •  Predictions vs facts – Would you pay? How much? •  Snapshot in time – Lots of data vs ongoing data From Code to Product Lecture 10 — Analytics— Slide 57 gidgreen.com/course
  • 58. Getting users to survey •  Prominent link in product •  Prize giveaway •  Response to support email •  Mass mailing •  Cold calling •  Bias bias bias ... From Code to Product Lecture 10 — Analytics— Slide 58 gidgreen.com/course
  • 59. Good survey design •  Keep it short! – Focus on objectives •  Minimize burden on user – Easy questions, especially at start – Multiple choice •  Make it feel anonymous – Social desirability bias •  Free text at end From Code to Product Lecture 10 — Analytics— Slide 59 gidgreen.com/course
  • 60. Bad questions When did you last go online and buy something? Would you buy our superior product? Are you willing to pay for things online? If we created a reliable and bug-free product which had all of the features that you requested in response to the questions in this survey, would you be willing to pay us $10 per month for it? What are you looking for? From Code to Product Lecture 10 — Analytics— Slide 60 gidgreen.com/course
  • 61. Analyzing survey data •  Manual review – At least for free text field •  Histograms •  Pairwise correlations – Especially against price •  Clustering – Identify price points – Decide who is worth serving From Code to Product Lecture 10 — Analytics— Slide 61 gidgreen.com/course
  • 62. Pairwise correlation From Code to Product Lecture 10 — Analytics— Slide 62 gidgreen.com/course R² = 0.04028 0 1 $0 $20 $40 $60 $80 MultipleRecipients?
  • 63. Mini surveys From Code to Product Lecture 10 — Analytics— Slide 63 gidgreen.com/course
  • 64. Lecture 10 •  Introduction •  Data collection •  Website metrics •  Optimization •  Competitive intelligence •  Surveys •  Tools and books From Code to Product Lecture 10 — Analytics— Slide 64 gidgreen.com/course
  • 65. Analytics tools From Code to Product Lecture 10 — Analytics— Slide 65 gidgreen.com/course
  • 66. Other tools From Code to Product Lecture 10 — Analytics— Slide 66 gidgreen.com/course
  • 67. Books From Code to Product Lecture 10 — Analytics— Slide 67 gidgreen.com/course
  • 68. We didn’t cover… •  Social media analytics – Popularity – Sentiment analysis •  Video analytics – Attention – Embeds •  Content reuse From Code to Product Lecture 10 — Analytics— Slide 68 gidgreen.com/course