Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Google Analytics

Avatar for Daniel Ku Daniel Ku
April 21, 2014

Google Analytics

Google Analytics 발표 자료

참고:
구글 애널리틱스: 웹 로그 분석의 시작과 끝 (개정판)
Analytics Academy (https://analyticsacademy.withgoogle.com/)
Google Analytics - Google Developers (https://developers.google.com/analytics/)

Avatar for Daniel Ku

Daniel Ku

April 21, 2014
Tweet

More Decks by Daniel Ku

Other Decks in Research

Transcript

  1. Getting Started with Analytics 1. Sign up for an account.

    2. Set up account properties. 3. Set up your tracking code.
  2. Most Commonly Used Filters · Include only your website's traffic

    · Exclude certain known visitors · Segment by geographical location · Segment by visitor campaign, medium, or referrer source · Segment by content
  3. User ID a unique string representing a user associates data

    from different devices and multiple sessions
  4. Limits and Quotas Universal Analytics Enabled · 200,000 hits per

    user per day · 500 hits per session (except item and transaction hit types) This applies to analytics.js, Android/iOS SDK and the Measurement Protocol.
  5. Behavior > Overview Behavior > Site Content > All Pages

    Behavior > Site Speed > Overview Behavior > Events > Overview
  6. Conversions > Goals > Overview Conversions > Goals > Funnel

    Visualization Conversions > Goals > Goal Flow
  7. Event Tracking ga('send', 'event', 'button', 'click', 'nav buttons', 4); ga('send',

    { 'hitType': 'event', // Required. 'eventCategory': 'button', // Required. 'eventAction': 'click', // Required. 'eventLabel': 'nav buttons', 'eventValue': 4 });
  8. Angulartics Web analytics for AngularJS applications · http://luisfarzati.github.io/angulartics/ angular.module('myApp', ['angulartics',

    'angulartics.google.analytics']) · supports Google Analytics, Kissmetrics, Mixpanel, Chartbeat and Segment.io
  9. universal-analytics A node module for Google's Universal Analytics tracking ·

    https://github.com/peaksandpies/universal- analytics var ua = require('universal-analytics'); var visitor = ua('UA-XXXX-XX', 'USER_ID'); visitor.pageview("/").send();