10 Analytics & Optimization. From Code to Product gidgreen.com/course

Size: px
Start display at page:

Download "10 Analytics & Optimization. From Code to Product gidgreen.com/course"

Transcription

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 Acquisition Activation Retention Referral Revenue Site visit or app download Registration or usage Repeat usage Brings other people Generate cash Dave McClure, 500 Startups From Code to Product Lecture 10 Analytics Slide 5 gidgreen.com/course

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 [06/May/2012:08:13: ] "GET / HTTP/ " "Mozilla/5.0 (iphone; CPU iphone OS 5_1 like Mac OS X) AppleWebKit/ (KHTML, like Gecko) Mobile/9B179 Safari/ " 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 ']); _gaq.push(['_trackpageview']); (function() { var ga = document.createelement('script'); ga.type = 'text/javascript'; ga.async = true; ga.src = (' == document.location.protocol? ' : ' + '.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 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 From Code to Product Lecture 4 UI Design Slide 14 gidgreen.com/course

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 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 Also: internal site search From Code to Product Lecture 10 Analytics Slide 25 gidgreen.com/course

26 Popular pages From Code to Product Lecture 10 Analytics Slide 26 gidgreen.com/course

27 Landing/entry pages You can t choose your home page A. Kaushik From Code to Product Lecture 10 Analytics Slide 27 gidgreen.com/course

28 Clickmaps and heatmaps From Code to Product Lecture 10 Analytics Slide 28 gidgreen.com/course

29 Conversion funnel Source: From Code to Product Lecture 10 Analytics Slide 29 gidgreen.com/course

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 Source: you_should_follow_me_on_twitter.html From Code to Product Lecture 10 Analytics Slide 34 gidgreen.com/course

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 From Code to Product Lecture 10 Analytics Slide 36 gidgreen.com/course

37 Multivariate testing Source: From Code to Product Lecture 10 Analytics Slide 37 gidgreen.com/course

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 Also: UK private companies From Code to Product Lecture 10 Analytics Slide 52 gidgreen.com/course

53 Revenue $200k From Code to Product Lecture 10 Analytics Slide 53 gidgreen.com/course

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 ( /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 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 1 Multiple Recipients? R² = $0 $20 $40 $60 $80 From Code to Product Lecture 10 Analytics Slide 62 gidgreen.com/course

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

DISCOVERING OUR PATRONS USING GOOGLE ANALYTICS

DISCOVERING OUR PATRONS USING GOOGLE ANALYTICS DISCOVERING OUR PATRONS USING GOOGLE ANALYTICS Michael Sheehan Lake Superior Libraries Symposium, WITC Superior June 1, 2012 A LITTLE ABOUT ME AND MY EMPLOYER Mike Sheehan is the Assistant Director at

More information

ANALYTICS. Geek Speak for the Technically Meek

ANALYTICS. Geek Speak for the Technically Meek ANALYTICS Geek Speak for the Technically Meek ABOUT ME Ben Pritchard Interactive Technology Director at bpritchard@garrisonhughes.com @pixelfumes www.garrisonhughes.com ABOUT Responsive Website Design

More information

Is Your Google Analytics Data Accurate?

Is Your Google Analytics Data Accurate? Is Your Google Analytics Data Accurate? September 18, 2013 Presented By Amin Shawki Analytics Manager Andy Gibson Digital Marketing Analyst 1. 1 Billion+ pageviews/year in sites analyzed and supported

More information

All SABMiller websites, as defined in this document should have Google Analyitcs implemented as a mandatory requirement.

All SABMiller websites, as defined in this document should have Google Analyitcs implemented as a mandatory requirement. Analytics version 1 Introduction Web analytics is used to track, measure, collect, report and analyse web data in order to understand and optimise usage of web properties. These properties could include

More information

Personalizing Google Analytics Using Events and Custom Variables. Josh Wilson State Library of North Carolina

Personalizing Google Analytics Using Events and Custom Variables. Josh Wilson State Library of North Carolina Personalizing Google Analytics Using Events and Custom Variables Josh Wilson State Library of North Carolina Five Minute Version What are Events? What are Custom Variables? Definitions & Differences Understanding

More information

Personalizing Google Analytics Using Events and Custom Variables. Josh Wilson State Library of North Carolina

Personalizing Google Analytics Using Events and Custom Variables. Josh Wilson State Library of North Carolina Personalizing Google Analytics Using Events and Custom Variables Josh Wilson State Library of North Carolina What you re about to sit through GA reports are ready to be customized! What are Custom Variables?

More information

Getting the most from your Google Analytics. Session 4 Extending Google Analytics the role of programming technologies and 3rd-party tools

Getting the most from your Google Analytics. Session 4 Extending Google Analytics the role of programming technologies and 3rd-party tools Session 4 Extending Google Analytics the role of programming technologies and 3rd-party tools Google Analytics information collection A default amount of data is collected for every page visited in a Google

More information

MONITORING YOUR WEBSITE WITH GOOGLE ANALYTICS

MONITORING YOUR WEBSITE WITH GOOGLE ANALYTICS MONITORING YOUR WEBSITE WITH GOOGLE ANALYTICS How to use Google Analytics to track activity on your website and help get the most out of your website 2 April 2012 Version 1.0 Contents Contents 2 Introduction

More information

Google Analytics for Government Second Edition

Google Analytics for Government Second Edition Google Analytics for Government Second Edition By Sarah Kaczmarek, May 2014 GOOGLE ANALYTICS FOR GOVERNMENT Second Edition Table of Contents PART 1: INTRODUCTION... 2 WELCOME TO THE SECOND EDITION OF GOOGLE

More information

Future Proof Analytics Techniques for Web 2.0 Applications Near Real Time Support Techniques Constantine J. Aivalis* - Technological Education Institute Crete, Anthony C. Boucouvalas ** - University of

More information

Google Analytics. Jay Murphy Trionia Incorporated The Science of Marketing jmurphy@trionia.com 877 234 0591

Google Analytics. Jay Murphy Trionia Incorporated The Science of Marketing jmurphy@trionia.com 877 234 0591 Google Analytics Jay Murphy Trionia Incorporated The Science of Marketing jmurphy@trionia.com 877 234 0591 Agenda Google Analytics A Whirl Wind Tour of Onsite SEO Google Analytics and SEO Google Analytics

More information

TOP 10 things. In Google Analytics. Your Association Should Measure. weblinkinternational.com

TOP 10 things. In Google Analytics. Your Association Should Measure. weblinkinternational.com TOP 10 things Your Association Should Measure In Google Analytics 1 weblinkinternational.com TABLE OF CONTENTS Welcome.... 3 Metric 1 «Audience Location.... 4 Metric 2 «Audience Engagement....... 6 Metric

More information

Analytics minibible. for Software Vendors

Analytics minibible. for Software Vendors Analytics minibible for Software Vendors Version 3.0 - last updated: November 2014 The last 12 months have been among the busiest for Google Analytics and other analytics tools. Here are just a few of

More information

Analytics minibible. for Software Vendors

Analytics minibible. for Software Vendors Analytics minibible for Software Vendors Version 3.0 - last updated: May 2012 The last 12 months have been among the busiest for Google Analytics and other analytics tools. Here are just a few of the latest

More information

1 Which of the following questions can be answered using the goal flow report?

1 Which of the following questions can be answered using the goal flow report? 1 Which of the following questions can be answered using the goal flow report? [A] Are there a lot of unexpected exits from a step in the middle of my conversion funnel? [B] Do visitors usually start my

More information

any software vendor using a 3rd party shopping cart

any software vendor using a 3rd party shopping cart Version 2.0 - last updated: August 2010 The Analytics industry has evolved a great deal since the last version of this book. Tools got better & faster including amazing features like Segmentation or Intelligence

More information

White paper: Google Analytics 12 steps to advanced setup for developers

White paper: Google Analytics 12 steps to advanced setup for developers White paper: Google Analytics 12 steps to advanced setup for developers We at Core work with a range of companies who come to us to advises them and manage their search and social requirements. Dr Jess

More information

Demystifying Digital Introduction to Google Analytics. Mal Chia Digital Account Director

Demystifying Digital Introduction to Google Analytics. Mal Chia Digital Account Director Demystifying Digital Introduction to Google Analytics Mal Chia Digital Account Director @malchia @communikateetal Slides will be emailed after the session 2 Workshop Overview 1. Introduction 2. Getting

More information

Analytics. Mark Zhuravsky Charles Thompson. January 14, 2014

Analytics. Mark Zhuravsky Charles Thompson. January 14, 2014 Analytics Mark Zhuravsky Charles Thompson January 14, 2014 Your Website as the Hub It s also the Starting Point Ability to create CTA landing pages Google Analytics code allows you to see activity, but

More information

Google Analytics Basics

Google Analytics Basics Google Analytics Basics Contents Google Analytics: An Introduction...3 Google Analytics Features... 3 Google Analytics Interface... Changing the Date Range... 8 Graphs... 9 Put Stats into Context... 10

More information

Getting Started with the new VWO

Getting Started with the new VWO Getting Started with the new VWO TABLE OF CONTENTS What s new in the new VWO... 3 Where to locate features in new VWO... 5 Steps to create a new Campaign... 18 Step # 1: Enter Campaign URLs... 19 Step

More information

Google Analytics for Robust Website Analytics. Deepika Verma, Depanwita Seal, Atul Pandey

Google Analytics for Robust Website Analytics. Deepika Verma, Depanwita Seal, Atul Pandey 1 Google Analytics for Robust Website Analytics Deepika Verma, Depanwita Seal, Atul Pandey 2 Table of Contents I. INTRODUCTION...3 II. Method for obtaining data for web analysis...3 III. Types of metrics

More information

Best SEO Practices for Online Gambling Sites

Best SEO Practices for Online Gambling Sites Best SEO Practices for Online Gambling Sites Table of Contents Introduction... 3 Stages of an SEO campaign: Keyword research... 4 On-site SEO. Technical issues... 6 Link building... 11 Analytics and tracking...

More information

16 metrics to ensure mobile app success

16 metrics to ensure mobile app success 16 metrics to ensure mobile app success 16 metrics to ensure mobile app success Introduction... 3 Performance metrics... 4 User, usage & demographics metrics... 5 Engagement metrics... 6 Business metrics...

More information

Types of KPI and Their Examples

Types of KPI and Their Examples Heinrich Herz Institute Web Usability how to select right KPI s and collect user evidences Leokadija Sviridova, Einsteinufer 37, 10587 Berlin www.hhi.fraunhofer.de Profile Conception and Development in

More information

Moreketing. With great ease you can end up wasting a lot of time and money with online marketing. Causing

Moreketing. With great ease you can end up wasting a lot of time and money with online marketing. Causing ! Moreketing Automated Cloud Marketing Service With great ease you can end up wasting a lot of time and money with online marketing. Causing frustrating delay and avoidable expense right at the moment

More information

Introduction. Chapter 1 Why Understanding Your Web Traffic Is Important to Your Business 3

Introduction. Chapter 1 Why Understanding Your Web Traffic Is Important to Your Business 3 Contents Foreword Introduction xix xxi Part I Measuring Success 1 Chapter 1 Why Understanding Your Web Traffic Is Important to Your Business 3 Website Measurement Why Do This?... 4 Information Web Analytics

More information

Impressive Analytics

Impressive Analytics Impressive Analytics and Insight on a Shoestring Lisa Ikariyama & Tracy Anderson Cabbage Tree Creative www.cabbagetree.co.nz Getting Started Before you design a page on your website or get started with

More information

Big Data Unlock the mystery and see what the future holds. Philip Sow SE Manager, SEA

Big Data Unlock the mystery and see what the future holds. Philip Sow SE Manager, SEA Big Data Unlock the mystery and see what the future holds Philip Sow SE Manager, SEA THE ERA OF BIG DATA Big Data Market: Reach $32.1 Billion in 2015 & to $54.4 billion by 2017 The 3 + 1 Vs Structure/Semi/Unstructured

More information

Advanced Diagnostics Limited ( We ) are committed to protecting and respecting your privacy.

Advanced Diagnostics Limited ( We ) are committed to protecting and respecting your privacy. MOBILE APPLICATION PRIVACY POLICY Advanced Diagnostics Limited ( We ) are committed to protecting and respecting your privacy. SCOPE OF POLICY This policy (together with our end-user licence agreement

More information

HOW DOES GOOGLE ANALYTICS HELP ME?

HOW DOES GOOGLE ANALYTICS HELP ME? Google Analytics HOW DOES GOOGLE ANALYTICS HELP ME? Google Analytics tells you how visitors found your site and how they interact with it. You'll be able to compare the behavior and profitability of visitors

More information

8 CRITICAL METRICS FOR MEASURING APP USER ENGAGEMENT

8 CRITICAL METRICS FOR MEASURING APP USER ENGAGEMENT 8 CRITICAL METRICS FOR MEASURING APP USER ENGAGEMENT Contents Measuring the Success of Your Mobile App...01 1. Users...04 2. Session Length...07 3. Session Interval...12 4. Time in App...15 5. Acquisitions...18

More information

Getting the most from your Google Analytics

Getting the most from your Google Analytics Session 2 Exploration main reports in more detail Real-Time reports Real-Time reports Use Real-Time to monitor user activity as it happens see each pageview being reported seconds after it occurs how many

More information

Measure What Matters. don t Track What s Easy, track what s Important. kissmetrics.com

Measure What Matters. don t Track What s Easy, track what s Important. kissmetrics.com 1 2 3 4 5 6 Measure What Matters don t Track What s Easy, track what s Important kissmetrics.com Measure What Matters A lot of technologies seem to be one step behind what we really want. And the analytics

More information

GOOGLE MOBILE ANALYTICS INTEGRATION. JANUARY 2013 (App version 3.0.8 onwards)

GOOGLE MOBILE ANALYTICS INTEGRATION. JANUARY 2013 (App version 3.0.8 onwards) GOOGLE MOBILE ANALYTICS INTEGRATION JANUARY 2013 (App version 3.0.8 onwards) What is Google Mobile Analytics? Google Mobile Analytics is a service to show how users interact with their websites and mobile

More information

Velocity Campus: Customer Discovery 2. Presented by Henry Shi @henrythe9ths henry@henrythe9th.com

Velocity Campus: Customer Discovery 2. Presented by Henry Shi @henrythe9ths henry@henrythe9th.com Velocity Campus: Customer Discovery 2 Presented by Henry Shi @henrythe9ths henry@henrythe9th.com Introduction Startups from My Experience Goals and Expectations How to Test/Validate Your Idea How to Build

More information

Google Analytics in the Dept. of Medicine

Google Analytics in the Dept. of Medicine Google Analytics in the Dept. of Medicine Understanding the Analytics Dashboard 1. Click this link to navigate back to your Analytics Settings page, so you can get an overview of and edit all your Analytics

More information

1. TYPES OF INFORMATION WE COLLECT.

1. TYPES OF INFORMATION WE COLLECT. PRIVACY POLICY GLOBAL ASSESSOR POOL, LLC, DBA PINSIGHT ( Company or we or us ) is committed to protecting your privacy. We prepared this Privacy Policy to describe our practices regarding the information

More information

Privacy Policy - LuxTNT.com

Privacy Policy - LuxTNT.com Privacy Policy - LuxTNT.com Overview TNT Luxury Group Limited (the owner of LuxTNT.com). knows that you care how information about you is used and shared, and we appreciate your trust that we will do so

More information

Google AdWords customers can see their Analytics data from inside their AdWords account

Google AdWords customers can see their Analytics data from inside their AdWords account Johannes Spruijt Free service offered by Google that generates detailed statistics about the visitors to a website. A premium version is also available for a fee. The product is aimed at marketers as opposed

More information

About Blue Sky Sessions

About Blue Sky Sessions Web Technologies Agenda About Blue Sky Sessions What We Do Web Development Application Development Search Engine Marketing Social Media Strategy Trends in Web Questions? About Blue Sky Sessions What We

More information

Index. AdWords, 182 AJAX Cart, 129 Attribution, 174

Index. AdWords, 182 AJAX Cart, 129 Attribution, 174 Index A AdWords, 182 AJAX Cart, 129 Attribution, 174 B BigQuery, Big Data Analysis create reports, 238 GA-BigQuery integration, 238 GA data, 241 hierarchy structure, 238 query language (see also Data selection,

More information

Abilities Centre collects personal information for the following purposes:

Abilities Centre collects personal information for the following purposes: Privacy Policy Accountability Abilities Centre is responsible for your personal information under its control. We have appointed a Privacy Officer who is accountable for our compliance with this Privacy

More information

WEBSITE PRIVACY POLICY. Last modified 10/20/11

WEBSITE PRIVACY POLICY. Last modified 10/20/11 WEBSITE PRIVACY POLICY Last modified 10/20/11 1. Introduction 1.1 Questions. This website is owned and operated by. If you have any questions or concerns about our Privacy Policy, feel free to email us

More information

SEACW DELIVERABLE D.1.6

SEACW DELIVERABLE D.1.6 SEACW DELIVERABLE D.1.6 Validation Methodology Specifications Project Acronym SEACW Grant Agreement No. 325146 Project Title Deliverable Reference Number Deliverable Title Social Ecosystem for Antiaging,

More information

Getting Started with Google Analytics 7 Easy but comprehensive steps

Getting Started with Google Analytics 7 Easy but comprehensive steps Getting Started with Google Analytics Right, so you have a shiny new website or you have a site that has been up and running for a while now that s great. The hard work is done and the leads and sales

More information

Google Analytics workbook

Google Analytics workbook Google Analytics workbook Sub-title here Google Analytics workbook Overview Google Analytics is just one of many tools available for tracking activity on a website or mobile application. It provides users

More information

Decision-making using web analytics. Rachell Underhill, UNC Grad School Anita Crescenzi, UNC Health Sciences Library

Decision-making using web analytics. Rachell Underhill, UNC Grad School Anita Crescenzi, UNC Health Sciences Library Decision-making using web analytics Rachell Underhill, UNC Grad School Anita Crescenzi, UNC Health Sciences Library For today Analytics at The Graduate School and the Health Sciences Library What analytics

More information

Web Analytics Definitions Approved August 16, 2007

Web Analytics Definitions Approved August 16, 2007 Web Analytics Definitions Approved August 16, 2007 Web Analytics Association 2300 M Street, Suite 800 Washington DC 20037 standards@webanalyticsassociation.org 1-800-349-1070 Licensed under a Creative

More information

Canadian Association for Research Libraries Toronto, Ontario 14 October 2015

Canadian Association for Research Libraries Toronto, Ontario 14 October 2015 Canadian Association for Research Libraries Toronto, Ontario 14 October 2015 Introductions Help & Learning Standard Reports Audience Traffic Sources Content Behaviour Measuring Value Basic Filtering &

More information

Boosting Campaign Performance Through Web Analytics. David Kamerer, PhD, APR Loyola University Chicago

Boosting Campaign Performance Through Web Analytics. David Kamerer, PhD, APR Loyola University Chicago Boosting Campaign Performance Through Web Analytics David Kamerer, PhD, APR Loyola University Chicago Whose web is it? Phase 1: IT Phase 2: designers Phase 3: content creators An embarrassing question:

More information

Conversion Rate Optimisation Guide

Conversion Rate Optimisation Guide Conversion Rate Optimisation Guide Improve the lead generation performance of your website - Conversion Rate Optimisation in a B2B environment Why read this guide? Work out how much revenue CRO could increase

More information

web analytics ...and beyond Not just for beginners, We are interested in your thoughts:

web analytics ...and beyond Not just for beginners, We are interested in your thoughts: web analytics 201 Not just for beginners, This primer is designed to help clarify some of the major challenges faced by marketers today, such as:...and beyond -defining KPIs in a complex environment -organizing

More information

TTI Summer Forum London, 2012. Barbara Pezzi, Director Web Analytics & Search Optimization

TTI Summer Forum London, 2012. Barbara Pezzi, Director Web Analytics & Search Optimization TTI Summer Forum London, 2012 Barbara Pezzi, Director Web Analytics & Search Optimization This Session: Marketing Tracking & Web Analytics Web Analytics Any successful online marketing initiative requires

More information

Optimize Your Drupal Site with Google Analytics

Optimize Your Drupal Site with Google Analytics Optimize Your Drupal Site with Google Analytics July 22, 2015 Mike Nescot Web Ops & Security Manager JBS International, Inc. Nick Grace Front-end Dev Manager JBS International, Inc. JBS International,

More information

Data Driven Success. Comparing Log Analytics Tools: Flowerfire s Sawmill vs. Google Analytics (GA)

Data Driven Success. Comparing Log Analytics Tools: Flowerfire s Sawmill vs. Google Analytics (GA) Data Driven Success Comparing Log Analytics Tools: Flowerfire s Sawmill vs. Google Analytics (GA) In business, data is everything. Regardless of the products or services you sell or the systems you support,

More information

An Introduction to Web Metrics. Paul G. Strupp, Ph.D.

An Introduction to Web Metrics. Paul G. Strupp, Ph.D. An Introduction to Web Metrics. Paul G. Strupp, Ph.D. Senior Web Analyst Sun Microsystems Agenda 1. What are Web Metrics? 2. Business Aspects: How to Build a Metrics Strategy. 3. Technical Aspects: Web

More information

AjaxScope: Remotely Monitoring Client-side Web-App Behavior

AjaxScope: Remotely Monitoring Client-side Web-App Behavior AjaxScope: Remotely Monitoring Client-side Web-App Behavior Emre Kıcıman emrek@microsoft.com Ben Livshits livshits@microsoft.com Internet Services Research Center Microsoft Research Runtime Analysis &

More information

BUSINESS IMPACT OF POOR WEB PERFORMANCE

BUSINESS IMPACT OF POOR WEB PERFORMANCE WHITE PAPER: WEB PERFORMANCE TESTING Everyone wants more traffic to their web site, right? More web traffic surely means more revenue, more conversions and reduced costs. But what happens if your web site

More information

Webtrends for SharePoint 2010 A Microsoft Preferred Analytics Solution for SharePoint

Webtrends for SharePoint 2010 A Microsoft Preferred Analytics Solution for SharePoint Webtrends for SharePoint 2010 A Microsoft Preferred Analytics Solution for SharePoint Provided to By Sean Browning, Webtrends 13-Sep-2011 Webtrends Expertise with SharePoint Webtrends is a Microsoft-designated

More information

A PRESENTATION BY RITESH GUPTA

A PRESENTATION BY RITESH GUPTA A PRESENTATION BY RITESH GUPTA WEB ANALYTICS next 2 Deep Dive 01 into Web Analytics Web Analytics < 3 Digital Analytics / Measurability Caution: The addictive adrenaline of analzying website data, interpreting

More information

About Google Analytics

About Google Analytics About Google Analytics v10 OmniUpdate, Inc. 1320 Flynn Road, Suite 100 Camarillo, CA 93012 OmniUpdate, Inc. 1320 Flynn Road, Suite 100 Camarillo, CA 93012 800.362.2605 805.484.9428 (fax) www.omniupdate.com

More information

Conversion Optimization Tools

Conversion Optimization Tools Conversion Optimization Tools Choosing the right optimization tools can make a significant difference to your bottom line. Learn all about the latest tools and how they can improve the volume of visitors

More information

Android App Marketing and Google Play

Android App Marketing and Google Play Android App Marketing and Google Play WHAT YOU NEED TO KNOW Learn how to improve Android app discovery, drive more installs, and generate long-term, loyal usage. TO SUCCEED, MARKETERS NEED VISIBILITY.

More information

Using Web Analytics to Track the Use of Formal and Informal Learning. Walter Wimberly, SunGard Public Sector

Using Web Analytics to Track the Use of Formal and Informal Learning. Walter Wimberly, SunGard Public Sector 101 Using Web Analytics to Track the Use of Formal and Informal Learning Walter Wimberly, SunGard Public Sector Successfully Measuring the Use of Your elearning Site (An Introduction to Web Analytics)

More information

Evaluating the impact of research online with Google Analytics

Evaluating the impact of research online with Google Analytics Public Engagement with Research Online Evaluating the impact of research online with Google Analytics The web provides extensive opportunities for raising awareness and discussion of research findings

More information

Digital Marketing Success for Websites FERDINAND WEPS SHHARED, APR 23, 2015

Digital Marketing Success for Websites FERDINAND WEPS SHHARED, APR 23, 2015 Digital Marketing Success for Websites FERDINAND WEPS SHHARED, APR 23, 2015 Ferdinand Weps Creative Director, Heaven & Weps Managing Partner, TrainingAid What We ll Talk About Today CUSTOMER JOURNEY GROUP

More information

Anytime - Anywhere ARE YOU THE NEXT MARKETING ADVISER. Digital Marketing Program

Anytime - Anywhere ARE YOU THE NEXT MARKETING ADVISER. Digital Marketing Program Anytime - Anywhere ARE YOU THE NEXT MARKETING ADVISER Digital Marketing Program Introduction Welcome to Scandlearn s Digital marketing program Start: 6 July 2015 End: 29 June 2016 Digital Marketing as

More information

SkyGlue Technology Inc., all rights reserved SkyGlue User Manual SkyGlue Technology Inc.

SkyGlue Technology Inc., all rights reserved SkyGlue User Manual SkyGlue Technology Inc. SkyGlue Technology Inc., all rights reserved SkyGlue User Manual SkyGlue Technology Inc. 1 Contents 2 What is SkyGlue?... 3 3 Why SkyGlue?... 3 4 Event Tracking Basics... 4 4.1 Google Event Tracking Overview...

More information

Presented By: Web Analytics 101. Avoid Common Mistakes and Learn Best Practices. June 2012. Lubabah Bakht, CEO, Vitizo

Presented By: Web Analytics 101. Avoid Common Mistakes and Learn Best Practices. June 2012. Lubabah Bakht, CEO, Vitizo Presented By: Web Analytics 101 Avoid Common Mistakes and Learn Best Practices June 2012 Lubabah Bakht, CEO, Vitizo Web Analytics 101, Lubabah Bakht, June 2012 This 12-page whitepaper provides a deep understanding

More information

Postgraduate Diploma in Digital Marketing. Awarded by University of California Irvine Extension

Postgraduate Diploma in Digital Marketing. Awarded by University of California Irvine Extension Postgraduate Diploma in Digital Marketing Awarded by University of California Irvine Extension 2 Accelerate your Career Improve Your Career Options with a Professional Postgraduate Diploma University of

More information

Privacy Policy. Effective Date: November 20, 2014

Privacy Policy. Effective Date: November 20, 2014 Privacy Policy Effective Date: November 20, 2014 Welcome to the American Born Moonshine website (this Site ). This policy describes the Privacy Policy (this Policy ) for this Site and describes how Windy

More information

Publish and Measure Phases

Publish and Measure Phases CHAPTER 7 Publish and Measure Phases 7. Measure 6. Publish 1. Plan 8. Optimize 2. Assess GOVERN 5. Build 4. Design 3. Define Anyone who has written anything or aspires to be writer knows that the word

More information

comscore Media Metrix Description of Methodology

comscore Media Metrix Description of Methodology comscore Media Metrix Description of Methodology Unified Digital Measurement United States November, 2013 1 Introduction This document provides an overview the methodologies used by comscore to deliver

More information

WEB ANALYTICS 101. March 20, 2015

WEB ANALYTICS 101. March 20, 2015 WEB ANALYTICS 101 March 20, 2015 AGENDA 1. Define web analytics 2. Explore how analytics tools work 3. Review best practices 4. Get to know your visitors 5. Identify traffic sources 6. Understand site

More information

RDM on Demand Privacy Policy

RDM on Demand Privacy Policy RDM on Demand Privacy Policy Ataccama Corp. www.ataccama.com info@ataccama.com Toronto, CA Prague, CZ London, UK Stamford, US 1 ATACCAMA RDM ON DEMAND PRIVACY POLICY 1. Ataccama Corp. ("Ataccama") and

More information

Privacy Policy. You can access the Privacy Policy at any time at. http://www.own-free-website.com/en/privacy-policy.php

Privacy Policy. You can access the Privacy Policy at any time at. http://www.own-free-website.com/en/privacy-policy.php Privacy Policy On this website you will find webme GmbH's Privacy Policy. The Privacy Policy has been designed to inform you and notify you of the kinds of personal data we collect, process and use, and

More information

Alexander Nikov. 7. ecommerce Marketing Concepts. Consumers Online: The Internet Audience and Consumer Behavior. Outline

Alexander Nikov. 7. ecommerce Marketing Concepts. Consumers Online: The Internet Audience and Consumer Behavior. Outline INFO 3435 E-Commerce Teaching Objectives 7. ecommerce Marketing Concepts Alexander Nikov Identify the key features of the Internet audience. Discuss the basic concepts of consumer behavior and purchasing

More information

Using Google Analytics

Using Google Analytics Using Google Analytics Overview Google Analytics is a free tracking application used to monitor visitors to your website in order to provide site designers with a fuller knowledge of their audience. At

More information

How We Use Your Personal Information On An Afinion International Ab And Afion International And Afinion Afion Afion

How We Use Your Personal Information On An Afinion International Ab And Afion International And Afinion Afion Afion AFFINION INTERNATIONAL AB COMPANY PRIVACY AND COOKIES POLICY The privacy and cookies policy sets out how we use any personal information that you give to us, or that we may collect or otherwise process

More information

2. A Note about Children. We do not intentionally gather Personal Data from visitors who are under the age of 13.

2. A Note about Children. We do not intentionally gather Personal Data from visitors who are under the age of 13. PRIVACY POLICY Macromeasures Inc. ("Macromeasures") is committed to protecting your privacy. We have prepared this Privacy Policy to describe to you our practices regarding the Personal Data (as defined

More information

WordPress Guide. v. 1.7. WorldTicket WordPress manual, 16 MAY 2014 1 / 23

WordPress Guide. v. 1.7. WorldTicket WordPress manual, 16 MAY 2014 1 / 23 WordPress Guide v. 1.7 WorldTicket WordPress manual, 16 MAY 2014 1 / 23 Table of Contents 1 Introduction... 4 1.1 Document Information... 4 1.1.1...... 4 1.2 Functional Overview of Booking Flow... 5 1.3

More information

Adobe Marketing Cloud Marketing Cloud Cookies

Adobe Marketing Cloud Marketing Cloud Cookies Adobe Marketing Cloud Marketing Cloud Cookies Contents Cookies Used in the Marketing Cloud...3 About Cookies and Privacy...3 Marketing Cloud Cookies...4 Analytics Cookies...5 Search&Promote Cookies...7

More information

Website analytics / statistics Monitoring and analysing the impact of web marketing

Website analytics / statistics Monitoring and analysing the impact of web marketing Website analytics / statistics Monitoring and analysing the impact of web marketing What are website analytics / statistics? Web analytics is the measurement, collection, analysis and reporting of website

More information

Call Tracking. Simplified. Intelligent call tracking ties it all together

Call Tracking. Simplified. Intelligent call tracking ties it all together Call Tracking Simplified Intelligent call tracking ties it all together 2 Research indicates that an astounding 63 percent of people complete their purchase offline following their search activity. (ComScore

More information

Online Marketing Training

Online Marketing Training Online Marketing Training Level: 1 Duration: 3 Days Time: 9:30 AM - 4:30 PM Cost: 697 Overview Online Marketing is all about ensuring your business, product or service is maximising the potential of the

More information

Free Analytics are Not Always the Best Deal

Free Analytics are Not Always the Best Deal Free Analytics are Not Always the Best Deal Summary The choice between utilizing a free Analytics solution versus a paid Analytics solution is not as straight forward as it may appear. Indeed, free Analytics

More information

ANALYZING YOUR RESULTS

ANALYZING YOUR RESULTS ANALYZING YOUR RESULTS Kelley Jarrett, Market Manager Design Billy Stephens, Account Manager Design Measuring performance and learning from your audiences behaviors and feedback. REVISIT BENCHMARKS

More information

SKoolAide Privacy Policy

SKoolAide Privacy Policy SKoolAide Privacy Policy Welcome to SKoolAide. SKoolAide, LLC offers online education related services and applications that allow users to share content on the Web more easily. In addition to the sharing

More information

Google Analytics Access for Bentley Employees

Google Analytics Access for Bentley Employees Google Analytics Access for Bentley Employees 1. Google Analytics Login Google Analytics URL: http://www.google.com/analytics User name: bentleyshared@gmail.com Password: 2015analytics 2. Google Analytics

More information

Web metrics: deriving value from e-businesse. Rolan Micallef Attard Freelance, Trusted Business Consultant rolan@vol.net.mt

Web metrics: deriving value from e-businesse. Rolan Micallef Attard Freelance, Trusted Business Consultant rolan@vol.net.mt Web metrics: deriving value from e-businesse Rolan Micallef Attard Freelance, Trusted Business Consultant rolan@vol.net.mt Its all about customer-centric centric measurement Web Metrics are measurement

More information

Take Online Lead Generation to the Next Level

Take Online Lead Generation to the Next Level Take Online Lead Generation to the Next Level 5 Ways to Capture New Market Niches By: Deven Pravin Shah WSI Internet Marketing Consultant Overview Many business owners ask the same questions about capturing

More information

The Practical Guide To Google Analytics For Businesses

The Practical Guide To Google Analytics For Businesses The Practical Guide To Google Analytics For Businesses Why Analytics?... 6 1. Where to find the best data:... 7 Google Analytics Reports Standard Reports... 7 Traffic Sources... 7 The All Traffic Report...

More information

Affiliate Marketing for Mobile Apps. Peter Hamilton Partner / CMO Email: peter@hasoffers.com Twitter: @PeterHamilton #AMDays

Affiliate Marketing for Mobile Apps. Peter Hamilton Partner / CMO Email: peter@hasoffers.com Twitter: @PeterHamilton #AMDays Affiliate Marketing for Mobile Apps Peter Hamilton Partner / CMO Email: peter@hasoffers.com Twitter: @PeterHamilton #AMDays BOOM!!! Mobile Devices: More Mobile Phones than Humans on Earth More Smart Phones

More information

www.salesfusion.com WEBSITE VISITOR TRACKING How website visitor tracking can improve your pipeline

www.salesfusion.com WEBSITE VISITOR TRACKING How website visitor tracking can improve your pipeline www.salesfusion.com WEBSITE VISITOR TRACKING How website visitor tracking can improve your pipeline 2 In the Marketing Automation Dark Ages......of the early 2000s, marketers could only monitor website

More information

A Beginner s Guide To. google analytics

A Beginner s Guide To. google analytics A Beginner s Guide To google analytics executive summary Expectations have risen for marketing departments abilities to track, measure and optimize different marketing operations. In today s world of

More information

Mobile Ad Tracking Impacts. App Marketing Results. How. Comparisons, advantages and limitations of today s ad tracking technologies

Mobile Ad Tracking Impacts. App Marketing Results. How. Comparisons, advantages and limitations of today s ad tracking technologies How Mobile Ad Tracking Impacts App Marketing Results Comparisons, advantages and limitations of today s ad tracking technologies Advertising Identifier Facebook ID Android Referrer Digital Fingerprinting

More information

oneforty. Social Media KPIs and You: A Love Story Janet Aronica Directory, Marketing & Community oneforty

oneforty. Social Media KPIs and You: A Love Story Janet Aronica Directory, Marketing & Community oneforty oneforty. Social Media KPIs and You: A Love Story Janet Aronica Directory, Marketing & Community oneforty Social Media KPIs and You: A Love Story Establishing a social media measurement plan is a crucial

More information