SlideShare une entreprise Scribd logo
1  sur  48
Télécharger pour lire hors ligne
Andy Young // @andyy // andy@500.co
How do I analytics?
a practical guide for
pragmatic startups
Part B: Getting the Data
Andy Young // @andyy // andy@500.co
TO RECAP:
Today’s tools make it
super-easy to track
things
Google Analytics
Mixpanel
KissMetrics
Localytics
Branch Metrics..
Andy Young // @andyy // andy@500.co
Today’s tools make it
super-easy to track
things
BUT they also make it really easy to
- become overwhelmed with data
- focus on the wrong things
Andy Young // @andyy // andy@500.co
Typical analytics challenges/pitfalls
Drowning in too much data
Failure to select + focus on the top metrics that
matter
Not tracking the data you need to answer key
questions
Andy Young // @andyy // andy@500.co
Why analytics?
1. How are we doing?
- are KPIs on the right track?
2. What are the results of our experiments?
- so we can learn
3. What’s happening right now?
- did something great or terrible just happen?
Andy Young // @andyy // andy@500.co
Getting the Datas
Andy Young // @andyy // andy@500.co
Collecting data
Don’t use Google Analytics!
Andy Young // @andyy // andy@500.co
Don’t use Google Analytics!
It’s the wrong type of tool for most key
questions.
Designed around sessions & pageviews
Instead: focus on unique users and key actions
Specific user journeys are not that important
Instead: what % of unique users
reached a particular step eventually?
Collecting data
Andy Young // @andyy // andy@500.co
Collecting data
Use an analytics tool focused on tracking
events/actions
and
individual user behaviour
e.g. Mixpanel, Localytics, Amplitude
Andy Young // @andyy // andy@500.co
Collecting data
Events vs. Properties vs. People
Events: something happened
Properties: something about what just happened
People: connect events to particular users
(people can also have properties)
Andy Young // @andyy // andy@500.co
What to Track?
Andy Young // @andyy // andy@500.co
What to Track
All key user behaviours
● pages/screens viewed, key actions taken
● anything that writes a new row or updates an
existing row in your database or user’s session store
○ e.g. add to cart, post new content
● do you have all key steps in the user funnel?
● anything that has external impact, e.g. share
Andy Young // @andyy // andy@500.co
Tracking events
Tip #1: Choose easy-to-read and meaningful
event names
Short!
Pick a convention; stick to it
Omit superfluous words
“user_viewed_homepage”
“Viewed homepage”
Andy Young // @andyy // andy@500.co
Tracking events
Andy Young // @andyy // andy@500.co
Tracking events
[Object] + [Action]
Andy Young // @andyy // andy@500.co
Tracking events
Andy Young // @andyy // andy@500.co
Tip #2: Track each user based on a distinct ID
Don’t use email address -
use autogenerated user_id from your own DB
Use aliasing to connect up events tracked
pre/post signup
Tracking events
Andy Young // @andyy // andy@500.co
Tip #3: Annotate your users with source data
referrer; utm tags; install tracking via AppsFlyer
1. Track a signup event
2. Add as user properties
3. Potentially also as properties to key events
Tracking events
Andy Young // @andyy // andy@500.co
Tip #4: (Mixpanel specific) - People vs. Events
Mixpanel won’t let you query for users
who did particular events
So, our options:
- Do this using your own DB
- Annotate your users (People) with properties
for each key event
Tracking events
Andy Young // @andyy // andy@500.co
Tip #5: Ecommerce/revenue tracking
Mixpanel/AppBoy etc have
native support for tracking revenue
Annotate your Purchase events with revenue data
using the relevant properties for each platform
Tracking events
Andy Young // @andyy // andy@500.co
Tip #6: Use a development project for testing
Tracking events
Andy Young // @andyy // andy@500.co
Track events from where?
Client/app vs. server
Tracking events
Andy Young // @andyy // andy@500.co
Tracking the funnel
Andy Young // @andyy // andy@500.co
Tracking the funnel
Start with the pirate metrics AARRR
Top of funnel: acquisition; signups/installs
Mid funnel: post-install events; engagement;
retention
Bottom of funnel: purchase / monetisation.
Andy Young // @andyy // andy@500.co
Tracking the funnel
Looking at each stage (AARRR) in aggregate
is a good start
but it will only get you so far
the “truth” is much more nuanced
Andy Young // @andyy // andy@500.co
Tracking the funnel
Users acquired via different channels
will have different behaviours
Different cohorts will have
different experiences of your product
Different users will have been exposed to
different A/B tests
Andy Young // @andyy // andy@500.co
Tracking the funnel
Key: these are all properties of your users
UTM tags: source, medium, campaign, terms
Landing page
Signup time
A/B test buckets
Referrer
Viral source
Andy Young // @andyy // andy@500.co
Tracking the funnel
Annotate your users in your database/analytics
system with these attributes
UTM tags: source, medium, campaign, terms
Landing page
Signup time
A/B test buckets
Referrer
Viral source
Andy Young // @andyy // andy@500.co
Let’s get Technical..
Andy Young // @andyy // andy@500.co
Implementing Tracking
Use a
Tag Manager
(e.g. Google Tag Manager)
Check out
Segment.com
for flexibility & agility
Andy Young // @andyy // andy@500.co
www.sitehound.co
- Free code! -
Andy Young // @andyy // andy@500.co
Implementing Tracking
Add your
Facebook + Google
Custom Audience /
Remarketing Pixels
Now!
Start building your audience
Andy Young // @andyy // andy@500.co
Revisiting
Cohort Analysis
Andy Young // @andyy // andy@500.co
Andy Young // @andyy // andy@500.co
Andy Young // @andyy // andy@500.co
Problems with Cohort Analysis
Time consuming
Delays to get the latest data
Inflexible
Andy Young // @andyy // andy@500.co
Rolling Cohorts
Andy Young // @andyy // andy@500.co
Andy Young // @andyy // andy@500.co
Rolling Cohorts
Andy Young // @andyy // andy@500.co
How?
Andy Young // @andyy // andy@500.co
Use your existing database
Users
Learn SQL! It's not hard
Just need a slave database for analytics
- “read replica” - i.e. a live copy
Andy Young // @andyy // andy@500.co
Use your existing data
Users
SELECT COUNT(*) FROM users
Andy Young // @andyy // andy@500.co
Use your existing data
Users
SELECT COUNT(*) FROM users
WHERE created > ‘2013-07-01’
AND created < ‘2013-08-01’
Andy Young // @andyy // andy@500.co
Use your existing data
SELECT COUNT(*) FROM users
LEFT JOIN sales USING (user_id)
WHERE users.created > ‘2013-07-01’
AND users.created < ‘2013-08-01’
AND sales.date < DATE_ADD(users.created, 1 MONTH)
Andy Young // @andyy // andy@500.co
1. Automate running queries (every hour!)
2. Store the results in a simple database
3. Create a page to graph the results
(HighCharts..)
Roll your own
Andy Young // @andyy // andy@500.co
Andy Young // @andyy // andy@500.co
Visitor numbers
Usage / engagement
Revenue
Conversion rates
Pirate metrics
Andy Young // @andyy // andy@500.co
Good luck!

Contenu connexe

Tendances

Data-driven Growth - Analytics & Attribution for Marketers in 2016 | Turing F...
Data-driven Growth - Analytics & Attribution for Marketers in 2016 | Turing F...Data-driven Growth - Analytics & Attribution for Marketers in 2016 | Turing F...
Data-driven Growth - Analytics & Attribution for Marketers in 2016 | Turing F...Andy Young
 
Analytics for Startups (Gaza Sky Geeks May '17)
Analytics for Startups (Gaza Sky Geeks May '17)Analytics for Startups (Gaza Sky Geeks May '17)
Analytics for Startups (Gaza Sky Geeks May '17)Andy Young
 
How not to drown in startup advice
How not to drown in startup adviceHow not to drown in startup advice
How not to drown in startup adviceAndy Young
 
10 Most Frequently Asked Questions about Measuring Social Media
10 Most Frequently Asked Questions about Measuring Social Media10 Most Frequently Asked Questions about Measuring Social Media
10 Most Frequently Asked Questions about Measuring Social MediaAlan K'necht
 
Content Jam 2015: Mobile Optimization Essentials: Tips for Increasing Mobile ...
Content Jam 2015: Mobile Optimization Essentials: Tips for Increasing Mobile ...Content Jam 2015: Mobile Optimization Essentials: Tips for Increasing Mobile ...
Content Jam 2015: Mobile Optimization Essentials: Tips for Increasing Mobile ...Orbit Media Studios
 
Conversion Hotel 2014: Craig Sullivan (UK) keynote
Conversion Hotel 2014: Craig Sullivan (UK) keynoteConversion Hotel 2014: Craig Sullivan (UK) keynote
Conversion Hotel 2014: Craig Sullivan (UK) keynoteWebanalisten .nl
 
How to create mind-blowing stories for digital marketers
How to create mind-blowing stories for digital marketersHow to create mind-blowing stories for digital marketers
How to create mind-blowing stories for digital marketersAlexandraTachalova
 
The 500 Startups Marketing Stack - Matt Lerner's talk from MarTech Europe 2015
The 500 Startups Marketing Stack - Matt Lerner's talk from MarTech Europe 2015The 500 Startups Marketing Stack - Matt Lerner's talk from MarTech Europe 2015
The 500 Startups Marketing Stack - Matt Lerner's talk from MarTech Europe 2015Matt Lerner
 
Sustainable Content Marketing
Sustainable Content MarketingSustainable Content Marketing
Sustainable Content MarketingPaddy Moogan
 
Digital Marketing for Startup & Entrepreneurs
Digital Marketing for Startup & EntrepreneursDigital Marketing for Startup & Entrepreneurs
Digital Marketing for Startup & EntrepreneursAmit Panchal
 
Agile Metrics: Patterns and Anti-Patterns for Enterprise Agility
Agile Metrics: Patterns and Anti-Patterns for Enterprise AgilityAgile Metrics: Patterns and Anti-Patterns for Enterprise Agility
Agile Metrics: Patterns and Anti-Patterns for Enterprise AgilityLaura Caldie Richardson
 
Growth Hacking Oxford Inspires 2016
Growth Hacking Oxford Inspires 2016Growth Hacking Oxford Inspires 2016
Growth Hacking Oxford Inspires 2016Matt Lerner
 
#AtomicChat Avoiding Content Marketing Mistakes
#AtomicChat Avoiding Content Marketing Mistakes#AtomicChat Avoiding Content Marketing Mistakes
#AtomicChat Avoiding Content Marketing MistakesAtomic Reach
 
SearchLove London | Ade Lewis 'Becoming a Digital Super-Hero'
SearchLove London | Ade Lewis 'Becoming a Digital Super-Hero'SearchLove London | Ade Lewis 'Becoming a Digital Super-Hero'
SearchLove London | Ade Lewis 'Becoming a Digital Super-Hero'Distilled
 
How to Get More Engagement on Instagram with Kelsey Jones
How to Get More Engagement on Instagram with Kelsey JonesHow to Get More Engagement on Instagram with Kelsey Jones
How to Get More Engagement on Instagram with Kelsey JonesSearch Engine Journal
 
Growth hacking 101 - Matt Lerner
Growth hacking 101 - Matt LernerGrowth hacking 101 - Matt Lerner
Growth hacking 101 - Matt LernerMatt Lerner
 
The 10 Step Checklist to Creating a Show-Stopping Content Distribuion Plan
The 10 Step Checklist to Creating a Show-Stopping Content Distribuion PlanThe 10 Step Checklist to Creating a Show-Stopping Content Distribuion Plan
The 10 Step Checklist to Creating a Show-Stopping Content Distribuion PlanZazzle Media
 
OMS 12 Finding & Engaging Influencers
OMS 12 Finding & Engaging InfluencersOMS 12 Finding & Engaging Influencers
OMS 12 Finding & Engaging InfluencersAdam Proehl
 

Tendances (20)

Data-driven Growth - Analytics & Attribution for Marketers in 2016 | Turing F...
Data-driven Growth - Analytics & Attribution for Marketers in 2016 | Turing F...Data-driven Growth - Analytics & Attribution for Marketers in 2016 | Turing F...
Data-driven Growth - Analytics & Attribution for Marketers in 2016 | Turing F...
 
Analytics for Startups (Gaza Sky Geeks May '17)
Analytics for Startups (Gaza Sky Geeks May '17)Analytics for Startups (Gaza Sky Geeks May '17)
Analytics for Startups (Gaza Sky Geeks May '17)
 
How not to drown in startup advice
How not to drown in startup adviceHow not to drown in startup advice
How not to drown in startup advice
 
Social Media Measurements
Social Media MeasurementsSocial Media Measurements
Social Media Measurements
 
10 Most Frequently Asked Questions about Measuring Social Media
10 Most Frequently Asked Questions about Measuring Social Media10 Most Frequently Asked Questions about Measuring Social Media
10 Most Frequently Asked Questions about Measuring Social Media
 
Content Jam 2015: Mobile Optimization Essentials: Tips for Increasing Mobile ...
Content Jam 2015: Mobile Optimization Essentials: Tips for Increasing Mobile ...Content Jam 2015: Mobile Optimization Essentials: Tips for Increasing Mobile ...
Content Jam 2015: Mobile Optimization Essentials: Tips for Increasing Mobile ...
 
Conversion Hotel 2014: Craig Sullivan (UK) keynote
Conversion Hotel 2014: Craig Sullivan (UK) keynoteConversion Hotel 2014: Craig Sullivan (UK) keynote
Conversion Hotel 2014: Craig Sullivan (UK) keynote
 
How to create mind-blowing stories for digital marketers
How to create mind-blowing stories for digital marketersHow to create mind-blowing stories for digital marketers
How to create mind-blowing stories for digital marketers
 
The 500 Startups Marketing Stack - Matt Lerner's talk from MarTech Europe 2015
The 500 Startups Marketing Stack - Matt Lerner's talk from MarTech Europe 2015The 500 Startups Marketing Stack - Matt Lerner's talk from MarTech Europe 2015
The 500 Startups Marketing Stack - Matt Lerner's talk from MarTech Europe 2015
 
Sustainable Content Marketing
Sustainable Content MarketingSustainable Content Marketing
Sustainable Content Marketing
 
Digital Marketing for Startup & Entrepreneurs
Digital Marketing for Startup & EntrepreneursDigital Marketing for Startup & Entrepreneurs
Digital Marketing for Startup & Entrepreneurs
 
Agile Metrics: Patterns and Anti-Patterns for Enterprise Agility
Agile Metrics: Patterns and Anti-Patterns for Enterprise AgilityAgile Metrics: Patterns and Anti-Patterns for Enterprise Agility
Agile Metrics: Patterns and Anti-Patterns for Enterprise Agility
 
Growth Hacking Oxford Inspires 2016
Growth Hacking Oxford Inspires 2016Growth Hacking Oxford Inspires 2016
Growth Hacking Oxford Inspires 2016
 
#AtomicChat Avoiding Content Marketing Mistakes
#AtomicChat Avoiding Content Marketing Mistakes#AtomicChat Avoiding Content Marketing Mistakes
#AtomicChat Avoiding Content Marketing Mistakes
 
SearchLove London | Ade Lewis 'Becoming a Digital Super-Hero'
SearchLove London | Ade Lewis 'Becoming a Digital Super-Hero'SearchLove London | Ade Lewis 'Becoming a Digital Super-Hero'
SearchLove London | Ade Lewis 'Becoming a Digital Super-Hero'
 
How to Get More Engagement on Instagram with Kelsey Jones
How to Get More Engagement on Instagram with Kelsey JonesHow to Get More Engagement on Instagram with Kelsey Jones
How to Get More Engagement on Instagram with Kelsey Jones
 
Growth hacking 101 - Matt Lerner
Growth hacking 101 - Matt LernerGrowth hacking 101 - Matt Lerner
Growth hacking 101 - Matt Lerner
 
The 10 Step Checklist to Creating a Show-Stopping Content Distribuion Plan
The 10 Step Checklist to Creating a Show-Stopping Content Distribuion PlanThe 10 Step Checklist to Creating a Show-Stopping Content Distribuion Plan
The 10 Step Checklist to Creating a Show-Stopping Content Distribuion Plan
 
OMS 12 Finding & Engaging Influencers
OMS 12 Finding & Engaging InfluencersOMS 12 Finding & Engaging Influencers
OMS 12 Finding & Engaging Influencers
 
Instagram for business
Instagram for businessInstagram for business
Instagram for business
 

Similaire à Analytics: Getting the Data - 500 Startups Accelerator Marketing Hell Week

Growth Marketing Conference London 2017 - Andy Young - Building a Growth Model
Growth Marketing Conference London 2017 - Andy Young - Building a Growth ModelGrowth Marketing Conference London 2017 - Andy Young - Building a Growth Model
Growth Marketing Conference London 2017 - Andy Young - Building a Growth ModelGrowth Tribe
 
Andy Young - The Myth of the Hockey Stick
Andy Young - The Myth of the Hockey StickAndy Young - The Myth of the Hockey Stick
Andy Young - The Myth of the Hockey StickTuring Fest
 
Introduction to Google Analytics
Introduction to Google AnalyticsIntroduction to Google Analytics
Introduction to Google AnalyticsAVIK BAL
 
4 hour presentation madam glamour v090710
4 hour presentation   madam glamour v0907104 hour presentation   madam glamour v090710
4 hour presentation madam glamour v090710The Creative Collective
 
[Webinar] Innovate Faster by Adopting The Modern Growth Stack
[Webinar] Innovate Faster by Adopting The Modern Growth Stack[Webinar] Innovate Faster by Adopting The Modern Growth Stack
[Webinar] Innovate Faster by Adopting The Modern Growth StackOptimizely
 
Content Creation Regimen - WordCamp Hamilton 2016
Content Creation Regimen - WordCamp Hamilton 2016Content Creation Regimen - WordCamp Hamilton 2016
Content Creation Regimen - WordCamp Hamilton 2016Andy McIlwain
 
WordCamp London 2019 - Content monetisation platforms with WordPress
WordCamp London 2019 - Content monetisation platforms with WordPressWordCamp London 2019 - Content monetisation platforms with WordPress
WordCamp London 2019 - Content monetisation platforms with WordPressAngry Creative (UK)
 
Five Habits to Create Better Products Faster
Five Habits to Create Better Products FasterFive Habits to Create Better Products Faster
Five Habits to Create Better Products FasterHiten Shah
 
Digital marketing for events
Digital marketing for eventsDigital marketing for events
Digital marketing for eventsMichael Chidzey
 
Measuringsocialmediaimpact ead iworkshopjun2012
Measuringsocialmediaimpact ead iworkshopjun2012Measuringsocialmediaimpact ead iworkshopjun2012
Measuringsocialmediaimpact ead iworkshopjun2012Tony Roberts
 
AMCi 2010 Social Media Workshop
AMCi 2010 Social Media WorkshopAMCi 2010 Social Media Workshop
AMCi 2010 Social Media WorkshopSteve Drake
 
Using Social Media to Connect Younger Customers
Using Social Media to Connect Younger CustomersUsing Social Media to Connect Younger Customers
Using Social Media to Connect Younger CustomersHall Internet Marketing
 
Practical advice for measuring, analyzing, and reporting on your nonprofit's ...
Practical advice for measuring, analyzing, and reporting on your nonprofit's ...Practical advice for measuring, analyzing, and reporting on your nonprofit's ...
Practical advice for measuring, analyzing, and reporting on your nonprofit's ...Sarah M Worthy
 
Create the Ultimate SEO Toolbelt | Ralegh SEO Meetup | Lee Kennedy
Create the Ultimate SEO Toolbelt | Ralegh SEO Meetup | Lee KennedyCreate the Ultimate SEO Toolbelt | Ralegh SEO Meetup | Lee Kennedy
Create the Ultimate SEO Toolbelt | Ralegh SEO Meetup | Lee KennedyLee Kennedy
 
How to avoid 6 deadly mistakes when building a digital product 2018
How to avoid 6 deadly mistakes when building a digital product 2018How to avoid 6 deadly mistakes when building a digital product 2018
How to avoid 6 deadly mistakes when building a digital product 2018inFullMobile
 
Eric Ries sllconf keynote: state of the lean startup movement
Eric Ries sllconf keynote: state of the lean startup movementEric Ries sllconf keynote: state of the lean startup movement
Eric Ries sllconf keynote: state of the lean startup movementEric Ries
 
Measuringsocialmediaimpact ead iworkshopjun2012
Measuringsocialmediaimpact ead iworkshopjun2012Measuringsocialmediaimpact ead iworkshopjun2012
Measuringsocialmediaimpact ead iworkshopjun2012Tony Roberts
 

Similaire à Analytics: Getting the Data - 500 Startups Accelerator Marketing Hell Week (20)

Growth Marketing Conference London 2017 - Andy Young - Building a Growth Model
Growth Marketing Conference London 2017 - Andy Young - Building a Growth ModelGrowth Marketing Conference London 2017 - Andy Young - Building a Growth Model
Growth Marketing Conference London 2017 - Andy Young - Building a Growth Model
 
Andy Young - The Myth of the Hockey Stick
Andy Young - The Myth of the Hockey StickAndy Young - The Myth of the Hockey Stick
Andy Young - The Myth of the Hockey Stick
 
Kindermusik september 2010
Kindermusik september 2010Kindermusik september 2010
Kindermusik september 2010
 
Introduction to Google Analytics
Introduction to Google AnalyticsIntroduction to Google Analytics
Introduction to Google Analytics
 
4 hour presentation madam glamour v090710
4 hour presentation   madam glamour v0907104 hour presentation   madam glamour v090710
4 hour presentation madam glamour v090710
 
[Webinar] Innovate Faster by Adopting The Modern Growth Stack
[Webinar] Innovate Faster by Adopting The Modern Growth Stack[Webinar] Innovate Faster by Adopting The Modern Growth Stack
[Webinar] Innovate Faster by Adopting The Modern Growth Stack
 
Content Creation Regimen - WordCamp Hamilton 2016
Content Creation Regimen - WordCamp Hamilton 2016Content Creation Regimen - WordCamp Hamilton 2016
Content Creation Regimen - WordCamp Hamilton 2016
 
Web 2010 Discover Ten Strategies Defining Your Business Future
Web 2010  Discover Ten Strategies Defining Your Business FutureWeb 2010  Discover Ten Strategies Defining Your Business Future
Web 2010 Discover Ten Strategies Defining Your Business Future
 
WordCamp London 2019 - Content monetisation platforms with WordPress
WordCamp London 2019 - Content monetisation platforms with WordPressWordCamp London 2019 - Content monetisation platforms with WordPress
WordCamp London 2019 - Content monetisation platforms with WordPress
 
Five Habits to Create Better Products Faster
Five Habits to Create Better Products FasterFive Habits to Create Better Products Faster
Five Habits to Create Better Products Faster
 
Digital marketing for events
Digital marketing for eventsDigital marketing for events
Digital marketing for events
 
Measuringsocialmediaimpact ead iworkshopjun2012
Measuringsocialmediaimpact ead iworkshopjun2012Measuringsocialmediaimpact ead iworkshopjun2012
Measuringsocialmediaimpact ead iworkshopjun2012
 
Minimum viable product
Minimum viable productMinimum viable product
Minimum viable product
 
AMCi 2010 Social Media Workshop
AMCi 2010 Social Media WorkshopAMCi 2010 Social Media Workshop
AMCi 2010 Social Media Workshop
 
Using Social Media to Connect Younger Customers
Using Social Media to Connect Younger CustomersUsing Social Media to Connect Younger Customers
Using Social Media to Connect Younger Customers
 
Practical advice for measuring, analyzing, and reporting on your nonprofit's ...
Practical advice for measuring, analyzing, and reporting on your nonprofit's ...Practical advice for measuring, analyzing, and reporting on your nonprofit's ...
Practical advice for measuring, analyzing, and reporting on your nonprofit's ...
 
Create the Ultimate SEO Toolbelt | Ralegh SEO Meetup | Lee Kennedy
Create the Ultimate SEO Toolbelt | Ralegh SEO Meetup | Lee KennedyCreate the Ultimate SEO Toolbelt | Ralegh SEO Meetup | Lee Kennedy
Create the Ultimate SEO Toolbelt | Ralegh SEO Meetup | Lee Kennedy
 
How to avoid 6 deadly mistakes when building a digital product 2018
How to avoid 6 deadly mistakes when building a digital product 2018How to avoid 6 deadly mistakes when building a digital product 2018
How to avoid 6 deadly mistakes when building a digital product 2018
 
Eric Ries sllconf keynote: state of the lean startup movement
Eric Ries sllconf keynote: state of the lean startup movementEric Ries sllconf keynote: state of the lean startup movement
Eric Ries sllconf keynote: state of the lean startup movement
 
Measuringsocialmediaimpact ead iworkshopjun2012
Measuringsocialmediaimpact ead iworkshopjun2012Measuringsocialmediaimpact ead iworkshopjun2012
Measuringsocialmediaimpact ead iworkshopjun2012
 

Dernier

Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationBeyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationSafe Software
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024Stephanie Beckett
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationSlibray Presentation
 
CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):comworks
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 3652toLead Limited
 
Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Enterprise Knowledge
 
Training state-of-the-art general text embedding
Training state-of-the-art general text embeddingTraining state-of-the-art general text embedding
Training state-of-the-art general text embeddingZilliz
 
Search Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdfSearch Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdfRankYa
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfAddepto
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Mark Simos
 
Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebUiPathCommunity
 
SAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxSAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxNavinnSomaal
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Commit University
 
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr LapshynFwdays
 
The Future of Software Development - Devin AI Innovative Approach.pdf
The Future of Software Development - Devin AI Innovative Approach.pdfThe Future of Software Development - Devin AI Innovative Approach.pdf
The Future of Software Development - Devin AI Innovative Approach.pdfSeasiaInfotech2
 
AI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsAI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsMemoori
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsSergiu Bodiu
 

Dernier (20)

Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationBeyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptxE-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck Presentation
 
CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365
 
Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024
 
Training state-of-the-art general text embedding
Training state-of-the-art general text embeddingTraining state-of-the-art general text embedding
Training state-of-the-art general text embedding
 
Search Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdfSearch Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdf
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdf
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
 
Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio Web
 
SAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxSAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptx
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!
 
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
 
The Future of Software Development - Devin AI Innovative Approach.pdf
The Future of Software Development - Devin AI Innovative Approach.pdfThe Future of Software Development - Devin AI Innovative Approach.pdf
The Future of Software Development - Devin AI Innovative Approach.pdf
 
DMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special EditionDMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special Edition
 
AI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsAI as an Interface for Commercial Buildings
AI as an Interface for Commercial Buildings
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platforms
 

Analytics: Getting the Data - 500 Startups Accelerator Marketing Hell Week

  • 1. Andy Young // @andyy // andy@500.co How do I analytics? a practical guide for pragmatic startups Part B: Getting the Data
  • 2. Andy Young // @andyy // andy@500.co TO RECAP: Today’s tools make it super-easy to track things Google Analytics Mixpanel KissMetrics Localytics Branch Metrics..
  • 3. Andy Young // @andyy // andy@500.co Today’s tools make it super-easy to track things BUT they also make it really easy to - become overwhelmed with data - focus on the wrong things
  • 4. Andy Young // @andyy // andy@500.co Typical analytics challenges/pitfalls Drowning in too much data Failure to select + focus on the top metrics that matter Not tracking the data you need to answer key questions
  • 5. Andy Young // @andyy // andy@500.co Why analytics? 1. How are we doing? - are KPIs on the right track? 2. What are the results of our experiments? - so we can learn 3. What’s happening right now? - did something great or terrible just happen?
  • 6. Andy Young // @andyy // andy@500.co Getting the Datas
  • 7. Andy Young // @andyy // andy@500.co Collecting data Don’t use Google Analytics!
  • 8. Andy Young // @andyy // andy@500.co Don’t use Google Analytics! It’s the wrong type of tool for most key questions. Designed around sessions & pageviews Instead: focus on unique users and key actions Specific user journeys are not that important Instead: what % of unique users reached a particular step eventually? Collecting data
  • 9. Andy Young // @andyy // andy@500.co Collecting data Use an analytics tool focused on tracking events/actions and individual user behaviour e.g. Mixpanel, Localytics, Amplitude
  • 10. Andy Young // @andyy // andy@500.co Collecting data Events vs. Properties vs. People Events: something happened Properties: something about what just happened People: connect events to particular users (people can also have properties)
  • 11. Andy Young // @andyy // andy@500.co What to Track?
  • 12. Andy Young // @andyy // andy@500.co What to Track All key user behaviours ● pages/screens viewed, key actions taken ● anything that writes a new row or updates an existing row in your database or user’s session store ○ e.g. add to cart, post new content ● do you have all key steps in the user funnel? ● anything that has external impact, e.g. share
  • 13. Andy Young // @andyy // andy@500.co Tracking events Tip #1: Choose easy-to-read and meaningful event names Short! Pick a convention; stick to it Omit superfluous words “user_viewed_homepage” “Viewed homepage”
  • 14. Andy Young // @andyy // andy@500.co Tracking events
  • 15. Andy Young // @andyy // andy@500.co Tracking events [Object] + [Action]
  • 16. Andy Young // @andyy // andy@500.co Tracking events
  • 17. Andy Young // @andyy // andy@500.co Tip #2: Track each user based on a distinct ID Don’t use email address - use autogenerated user_id from your own DB Use aliasing to connect up events tracked pre/post signup Tracking events
  • 18. Andy Young // @andyy // andy@500.co Tip #3: Annotate your users with source data referrer; utm tags; install tracking via AppsFlyer 1. Track a signup event 2. Add as user properties 3. Potentially also as properties to key events Tracking events
  • 19. Andy Young // @andyy // andy@500.co Tip #4: (Mixpanel specific) - People vs. Events Mixpanel won’t let you query for users who did particular events So, our options: - Do this using your own DB - Annotate your users (People) with properties for each key event Tracking events
  • 20. Andy Young // @andyy // andy@500.co Tip #5: Ecommerce/revenue tracking Mixpanel/AppBoy etc have native support for tracking revenue Annotate your Purchase events with revenue data using the relevant properties for each platform Tracking events
  • 21. Andy Young // @andyy // andy@500.co Tip #6: Use a development project for testing Tracking events
  • 22. Andy Young // @andyy // andy@500.co Track events from where? Client/app vs. server Tracking events
  • 23. Andy Young // @andyy // andy@500.co Tracking the funnel
  • 24. Andy Young // @andyy // andy@500.co Tracking the funnel Start with the pirate metrics AARRR Top of funnel: acquisition; signups/installs Mid funnel: post-install events; engagement; retention Bottom of funnel: purchase / monetisation.
  • 25. Andy Young // @andyy // andy@500.co Tracking the funnel Looking at each stage (AARRR) in aggregate is a good start but it will only get you so far the “truth” is much more nuanced
  • 26. Andy Young // @andyy // andy@500.co Tracking the funnel Users acquired via different channels will have different behaviours Different cohorts will have different experiences of your product Different users will have been exposed to different A/B tests
  • 27. Andy Young // @andyy // andy@500.co Tracking the funnel Key: these are all properties of your users UTM tags: source, medium, campaign, terms Landing page Signup time A/B test buckets Referrer Viral source
  • 28. Andy Young // @andyy // andy@500.co Tracking the funnel Annotate your users in your database/analytics system with these attributes UTM tags: source, medium, campaign, terms Landing page Signup time A/B test buckets Referrer Viral source
  • 29. Andy Young // @andyy // andy@500.co Let’s get Technical..
  • 30. Andy Young // @andyy // andy@500.co Implementing Tracking Use a Tag Manager (e.g. Google Tag Manager) Check out Segment.com for flexibility & agility
  • 31. Andy Young // @andyy // andy@500.co www.sitehound.co - Free code! -
  • 32. Andy Young // @andyy // andy@500.co Implementing Tracking Add your Facebook + Google Custom Audience / Remarketing Pixels Now! Start building your audience
  • 33. Andy Young // @andyy // andy@500.co Revisiting Cohort Analysis
  • 34. Andy Young // @andyy // andy@500.co
  • 35. Andy Young // @andyy // andy@500.co
  • 36. Andy Young // @andyy // andy@500.co Problems with Cohort Analysis Time consuming Delays to get the latest data Inflexible
  • 37. Andy Young // @andyy // andy@500.co Rolling Cohorts
  • 38. Andy Young // @andyy // andy@500.co
  • 39. Andy Young // @andyy // andy@500.co Rolling Cohorts
  • 40. Andy Young // @andyy // andy@500.co How?
  • 41. Andy Young // @andyy // andy@500.co Use your existing database Users Learn SQL! It's not hard Just need a slave database for analytics - “read replica” - i.e. a live copy
  • 42. Andy Young // @andyy // andy@500.co Use your existing data Users SELECT COUNT(*) FROM users
  • 43. Andy Young // @andyy // andy@500.co Use your existing data Users SELECT COUNT(*) FROM users WHERE created > ‘2013-07-01’ AND created < ‘2013-08-01’
  • 44. Andy Young // @andyy // andy@500.co Use your existing data SELECT COUNT(*) FROM users LEFT JOIN sales USING (user_id) WHERE users.created > ‘2013-07-01’ AND users.created < ‘2013-08-01’ AND sales.date < DATE_ADD(users.created, 1 MONTH)
  • 45. Andy Young // @andyy // andy@500.co 1. Automate running queries (every hour!) 2. Store the results in a simple database 3. Create a page to graph the results (HighCharts..) Roll your own
  • 46. Andy Young // @andyy // andy@500.co
  • 47. Andy Young // @andyy // andy@500.co Visitor numbers Usage / engagement Revenue Conversion rates Pirate metrics
  • 48. Andy Young // @andyy // andy@500.co Good luck!