analytics to find opportunities or what google can tell you about your users and yourself wayne...

36
Analytics to Find Opportunities or What Google can tell you about your users and yourself Wayne Weibel Interface / Web / Drupal Developer Legal Information Institute Cornell University Dan Blackaby Technology Services Librarian Cornell University Law Library

Upload: clemence-hensley

Post on 29-Dec-2015

216 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: Analytics to Find Opportunities or What Google can tell you about your users and yourself Wayne Weibel Interface / Web / Drupal Developer Legal Information

Analytics to Find Opportunities or

What Google can tell you about your users and yourself

Wayne WeibelInterface / Web / Drupal Developer

Legal Information InstituteCornell University

Dan BlackabyTechnology Services LibrarianCornell University Law Library

Page 2: Analytics to Find Opportunities or What Google can tell you about your users and yourself Wayne Weibel Interface / Web / Drupal Developer Legal Information

Google Analytics

• provides user tracking, layout experimentation, and site performance metrics

• uses asynchronous scripting to inject code and record data• tracks users/visits via cookies

Page 3: Analytics to Find Opportunities or What Google can tell you about your users and yourself Wayne Weibel Interface / Web / Drupal Developer Legal Information

Google Analytics

• provides user tracking, layout experimentation, and site performance metrics

• uses asynchronous scripting to inject code and record data• tracks users/visits via cookies

• improve site traffic• improve design and layout

Page 4: Analytics to Find Opportunities or What Google can tell you about your users and yourself Wayne Weibel Interface / Web / Drupal Developer Legal Information

Google Analytics

• provides user tracking, layout experimentation, and site performance metrics

• uses asynchronous scripting to inject code and record data• tracks users/visits via cookies

• improve site traffic• improve design and layout

• keep users on the site… yes, analytics is all about marketing

Page 5: Analytics to Find Opportunities or What Google can tell you about your users and yourself Wayne Weibel Interface / Web / Drupal Developer Legal Information

What ya need is

1. a Google Account2. access to the code (of the webpage)

Page 6: Analytics to Find Opportunities or What Google can tell you about your users and yourself Wayne Weibel Interface / Web / Drupal Developer Legal Information

What ya need is

1. a Google Account2. access to the code (of the webpage)

… yeah that’s it

Page 7: Analytics to Find Opportunities or What Google can tell you about your users and yourself Wayne Weibel Interface / Web / Drupal Developer Legal Information

What ya need is

1. a Google Account2. access to the code

• an Analytics account is NOT the same as your Google account

• users must have a valid gmail

Page 8: Analytics to Find Opportunities or What Google can tell you about your users and yourself Wayne Weibel Interface / Web / Drupal Developer Legal Information
Page 9: Analytics to Find Opportunities or What Google can tell you about your users and yourself Wayne Weibel Interface / Web / Drupal Developer Legal Information

Tracking Code

• Old-old way was not asynchronous

Page 10: Analytics to Find Opportunities or What Google can tell you about your users and yourself Wayne Weibel Interface / Web / Drupal Developer Legal Information

Tracking Code

• Old-old way was not asynchronous• New-old way – ga.js

Page 11: Analytics to Find Opportunities or What Google can tell you about your users and yourself Wayne Weibel Interface / Web / Drupal Developer Legal Information

Tracking Code

• Old-old way was not asynchronous• New-old way – ga.js

• New-new way – analytics.js – Universal Analytics

Page 12: Analytics to Find Opportunities or What Google can tell you about your users and yourself Wayne Weibel Interface / Web / Drupal Developer Legal Information

Tracking Code

• Put in each page directly … yeah no

Page 13: Analytics to Find Opportunities or What Google can tell you about your users and yourself Wayne Weibel Interface / Web / Drupal Developer Legal Information

Tracking Code

• Put in each page directly … yeah no• Dynamic include; PHP or Javascript

– <?php include_once(‘path/to/file/analyticstracking.php’); ?>– <script type="text/javascript"

src=”path/to/js/analyticstracking.js” />

Page 14: Analytics to Find Opportunities or What Google can tell you about your users and yourself Wayne Weibel Interface / Web / Drupal Developer Legal Information

Tracking Code

• Put in each page directly … yeah no• Dynamic include; PHP or Javascript

– <?php include_once(‘path/to/file/analyticstracking.php’); ?>– <script type="text/javascript"

src=”path/to/js/analyticstracking.js” />

• Theme Template include– directly insert tracking <script>, or use a dynamic include

• Put in module/plugin code

Page 15: Analytics to Find Opportunities or What Google can tell you about your users and yourself Wayne Weibel Interface / Web / Drupal Developer Legal Information
Page 16: Analytics to Find Opportunities or What Google can tell you about your users and yourself Wayne Weibel Interface / Web / Drupal Developer Legal Information

Real World Examples

• LII - Second Amendment• LII - Federal Rules of Bankruptcy Procedure

Page 17: Analytics to Find Opportunities or What Google can tell you about your users and yourself Wayne Weibel Interface / Web / Drupal Developer Legal Information
Page 18: Analytics to Find Opportunities or What Google can tell you about your users and yourself Wayne Weibel Interface / Web / Drupal Developer Legal Information
Page 19: Analytics to Find Opportunities or What Google can tell you about your users and yourself Wayne Weibel Interface / Web / Drupal Developer Legal Information

Real World Examples

• LII - Second Amendment• Resource link pulled from behind tab• Name of link changed => 3% to 35% click

• LII - Federal Rules of Bankruptcy Procedure• High click rate on link to itself in breadcrumb• Put note about lawyer resource

• Browser Window vs. Screen Size ‘event’

Page 20: Analytics to Find Opportunities or What Google can tell you about your users and yourself Wayne Weibel Interface / Web / Drupal Developer Legal Information
Page 21: Analytics to Find Opportunities or What Google can tell you about your users and yourself Wayne Weibel Interface / Web / Drupal Developer Legal Information

Real World Examples

• LII - Second Amendment• Resource link pulled from behind tab• Name of link changed => 3% to 35% click

• LII - Federal Rules of Bankruptcy Procedure• High click rate on link to itself in breadcrumb• Put note about lawyer resource

• Browser Window vs. Screen Size ‘event’• _gaq.push(['_trackEvent’, ‘viewport’, 'width’, $(window).width()+’’]);

• _gaq.push(['_trackEvent', ‘viewport’, 'height', $(window).height()+’’]);

• Rutgers Law Library Hours• Measurement Protocol

Page 22: Analytics to Find Opportunities or What Google can tell you about your users and yourself Wayne Weibel Interface / Web / Drupal Developer Legal Information

Using Analytics During a Re-Design

A.K.A. Tweaking as you go

Page 23: Analytics to Find Opportunities or What Google can tell you about your users and yourself Wayne Weibel Interface / Web / Drupal Developer Legal Information

• Assessment• Benchmarking• Realism

Page 24: Analytics to Find Opportunities or What Google can tell you about your users and yourself Wayne Weibel Interface / Web / Drupal Developer Legal Information
Page 25: Analytics to Find Opportunities or What Google can tell you about your users and yourself Wayne Weibel Interface / Web / Drupal Developer Legal Information
Page 26: Analytics to Find Opportunities or What Google can tell you about your users and yourself Wayne Weibel Interface / Web / Drupal Developer Legal Information
Page 27: Analytics to Find Opportunities or What Google can tell you about your users and yourself Wayne Weibel Interface / Web / Drupal Developer Legal Information
Page 28: Analytics to Find Opportunities or What Google can tell you about your users and yourself Wayne Weibel Interface / Web / Drupal Developer Legal Information
Page 29: Analytics to Find Opportunities or What Google can tell you about your users and yourself Wayne Weibel Interface / Web / Drupal Developer Legal Information
Page 30: Analytics to Find Opportunities or What Google can tell you about your users and yourself Wayne Weibel Interface / Web / Drupal Developer Legal Information

The enemy of art is the absence of limitations -Orson Welles

Page 31: Analytics to Find Opportunities or What Google can tell you about your users and yourself Wayne Weibel Interface / Web / Drupal Developer Legal Information

I’ve never kept a record of anything - Sean Connery

Page 32: Analytics to Find Opportunities or What Google can tell you about your users and yourself Wayne Weibel Interface / Web / Drupal Developer Legal Information
Page 33: Analytics to Find Opportunities or What Google can tell you about your users and yourself Wayne Weibel Interface / Web / Drupal Developer Legal Information
Page 34: Analytics to Find Opportunities or What Google can tell you about your users and yourself Wayne Weibel Interface / Web / Drupal Developer Legal Information
Page 35: Analytics to Find Opportunities or What Google can tell you about your users and yourself Wayne Weibel Interface / Web / Drupal Developer Legal Information
Page 36: Analytics to Find Opportunities or What Google can tell you about your users and yourself Wayne Weibel Interface / Web / Drupal Developer Legal Information