
<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Jesper Åström - Ideas worth keeping to yourself&#187; Google Analytics</title>
	<atom:link href="http://jesperastrom.com/tag/google-analytics/feed/" rel="self" type="application/rss+xml" />
	<link>http://jesperastrom.com</link>
	<description>SEO, eMail &#38; Social Media on a web full of chaos</description>
	<lastBuildDate>Wed, 28 Jul 2010 20:26:51 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>3 Simple Steps to Track Share Buttons in Google Analytics</title>
		<link>http://jesperastrom.com/google-analytics/3-simple-steps-to-track-share-buttons-in-google-analytics/</link>
		<comments>http://jesperastrom.com/google-analytics/3-simple-steps-to-track-share-buttons-in-google-analytics/#comments</comments>
		<pubDate>Sun, 17 Jan 2010 17:09:07 +0000</pubDate>
		<dc:creator>Jesper Astrom</dc:creator>
				<category><![CDATA[Google Analytics]]></category>
		<category><![CDATA[Event Tracking]]></category>
		<category><![CDATA[Google Analytics Event Tracking]]></category>

		<guid isPermaLink="false">http://jesperastrom.com/?p=1846</guid>
		<description><![CDATA[Event Tracking is one of the most powerful tracking possibilities in Google Analytics to track the virality of what you produce on your website, blog or web project. With even tracking you can simulate page views in flash files so that you can see the interactivity between your user and your flash file. With Event Tracking you can track clicks on buttons, how long it takes to load a certain element, or as in this example how many people shares your material on social platforms/subscribe to your RSS.

The implementation requires that you have an account on Google Analytics and that you have implemented the ga.js script instead of the legacy urchin.js script in the bottom of your pages.]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fjesperastrom.com%2Fgoogle-analytics%2F3-simple-steps-to-track-share-buttons-in-google-analytics%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fjesperastrom.com%2Fgoogle-analytics%2F3-simple-steps-to-track-share-buttons-in-google-analytics%2F&amp;source=JesperAstrom&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>Event Tracking is one of the most powerful tracking possibilities in Google Analytics to track the virality of what you produce on your website, blog or web project. With even tracking you can simulate page views in flash files so that you can see the interactivity between your user and your flash file. With Event Tracking you can track clicks on buttons, how long it takes to load a certain element, or as in this example how many people shares your material on social platforms/subscribe to your RSS.</p>
<p>The implementation requires that you have an account on Google Analytics and that you have implemented the ga.js script instead of the legacy urchin.js script in the bottom of your pages.</p>
<h2>1. Adding the tracking code</h2>
<p>To each of the events you would like to track you should add the following code. (For flash you need to do it a bit differently, but I&#8217;ll cover that if you want in later stories.)</p>
<p><strong>onClick=&#8221;pageTracker._trackEvent(&#8216;category&#8217;, &#8216;action&#8217;, &#8216;optional label&#8217;);&#8221;</strong></p>
<p><strong>in a link</strong></p>
<p><strong>&lt;a href=&#8221;http://jesperastrom.com&#8221; </strong><strong>onClick=&#8221;pageTracker._trackEvent(&#8216;category&#8217;, &#8216;action&#8217;, &#8216;optional label&#8217;);&#8221;&gt;Anchor Text&lt;/a&gt;</strong></p>
<p>You can choose any type of category, action or optional label that you want. You don&#8217;t have to choose a label really, but I find it useful. In this example I set category to what type of button they are clicking. I set action to the type of sharing the button represents and I set the optional label as a dynamic label for the page name.</p>
<p>As I am running a wordpress blogg the following code is the result:</p>
<p><strong>onClick=&#8221;pageTracker._trackEvent(&#8216;Subscribe&#8217;, &#8216;RSS&#8217;, &#8216;&lt;?php the_title(); ?&gt;&#8217;);&#8221;</strong></p>
<p>But you can easily exchange, remove etc. the last part of that code to represent some other label you want to put on that specific action. You can also add a fourth element to your set of data points which is an integer rather than a string. This integer represents the value for load time it takes to perform the requested action. Your code for such an implementation, possibly best used with play, pause, stop buttons for video, is as follows:</p>
<p><strong>onClick=&#8221;pageTracker._trackEvent(&#8216;Subscribe&#8217;, &#8216;RSS&#8217;, &#8216;&lt;?php the_title(); ?&gt;&#8217;, downloadTime );&#8221;</strong></p>
<p>If you choose to set up a tracker for downloads, movie plays, success events such as register buttons or clicks to check out pages (to compare to actual check outs if you have some unexplained drop off), then this works as well. Just change the category and action name to logical labels so that you can find the data in an easy way when you look in your reports.</p>
<h2>2. Finding your events</h2>
<p>There is an easy way to find the data for the events. Just wait about 24 hrs and a new tab will appear under your Content tab in the left navigation of your Google Analytics account.</p>
<p><a href="http://jesperastrom.com/wordpress/wp-content/uploads/Screen-shot-2010-01-17-at-5.45.51-PM.png"><img class="alignnone size-full wp-image-1847" title="Event tracking tab under your content tab in Google Analytics" src="http://jesperastrom.com/wordpress/wp-content/uploads/Screen-shot-2010-01-17-at-5.45.51-PM.png" alt="" width="241" height="252" /></a></p>
<p>Click the Event tracking tab and it will fold out so that you can see the options within it.</p>
<p><a href="http://jesperastrom.com/wordpress/wp-content/uploads/Screen-shot-2010-01-17-at-5.46.02-PM.png"><img class="alignnone size-full wp-image-1848" title="Event Tracking report options" src="http://jesperastrom.com/wordpress/wp-content/uploads/Screen-shot-2010-01-17-at-5.46.02-PM.png" alt="" width="235" height="173" /></a></p>
<p>Click around and you&#8217;ll find the different things sorted under each category.</p>
<h2>3. Setting up a Custom Report</h2>
<p>In my other post about <a title="Custom Reports in Google Analytics" href="http://jesperastrom.com/google-analytics/how-to-qualify-b2b-leads-through-google-analytics-custom-reports/">Custom Reports in Google Analytics</a> I showed you where to find the custom reports and how to create them. To simplify the drilldown of collected data I like to set one up for this occation. To see how I do that I recommend you to watch the video tutorial below that is also available on my <a title="Google Analytics Youtube Account" href="http://www.youtube.com/user/jesperthegreat" target="_blank">YouTube account</a>.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="600" height="319" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/RW2DKClPfMg&amp;hl=en&amp;fs=1" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="600" height="319" src="http://www.youtube.com/v/RW2DKClPfMg&amp;hl=en&amp;fs=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<h5>Possibly related posts:</h5>
<ul>
<li style="list-style: none;">Related posts on <strong>Event Tracking</strong></li>
<li><a href="http://joninge.com/2010/01/review-of-2009-hotel-tech-news/">Review of 2009 Hotel Tech News | Jon Inge</a></li>
<li><a href="http://resoluted.com/blogs/sam/2010/01/14/event-tracking-using-google-analytics/"><strong>Event Tracking</strong> using Google Analytics</a></li>
</ul>
<ul>
<li style="list-style: none;">Related posts on <strong>Google Analytics</strong></li>
<li><a href="http://rlwilsonconsulting.wordpress.com/2010/01/17/adding-google-analytics-to-your-website/">Adding <strong>Google Analytics</strong> to your website « Reading Tea Leaves by <strong>&#8230;</strong></a></li>
<li><a href="http://www.internetmarketingideas.info/advanced-web-metrics-with-google-analytics">Internet Marketing Ideas | Advanced Web Metrics with <strong>Google Analytics</strong></a></li>
</ul>
<ul>
<li style="list-style: none;">Related posts on <strong>Google Analytics Event Tracking</strong></li>
<li><a href="http://www.distilled.co.uk/blog/conversion-rate-optimisation/using-jquery-and-google-analytics-events-to-track-form-abandonment/">Using Jquery and Google Analytics events to track form abandonment.</a></li>
<li><a href="http://alisoviejo.localspur.com/2010/01/12/oncars-com-delivers-more-than-33-million-video-views-in-2009-digital-video-editing/">OnCars.com Delivers More Than 33 Million Video Views in 2009 <strong>&#8230;</strong></a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://jesperastrom.com/google-analytics/3-simple-steps-to-track-share-buttons-in-google-analytics/feed/</wfw:commentRss>
		<slash:comments>19</slash:comments>
		</item>
		<item>
		<title>Google Analytics Annotations</title>
		<link>http://jesperastrom.com/google-analytics/google-analytics-annotations/</link>
		<comments>http://jesperastrom.com/google-analytics/google-analytics-annotations/#comments</comments>
		<pubDate>Mon, 07 Dec 2009 19:26:26 +0000</pubDate>
		<dc:creator>Jesper Astrom</dc:creator>
				<category><![CDATA[Google Analytics]]></category>
		<category><![CDATA[Social Media Metrics]]></category>

		<guid isPermaLink="false">http://jesperastrom.com/?p=1563</guid>
		<description><![CDATA[Here is an extremely helpful tool I have completely missed out on so far in Google Analytics. Annotations is one of those things that makes your stats understandable and shareable within your organization. We cannot see similar functionality in other tools out there and Google are currently really pushing to become the number one in Analytics online.]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fjesperastrom.com%2Fgoogle-analytics%2Fgoogle-analytics-annotations%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fjesperastrom.com%2Fgoogle-analytics%2Fgoogle-analytics-annotations%2F&amp;source=JesperAstrom&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>Here is an extremely helpful tool I have completely missed out on so far in Google Analytics. Annotations is one of those things that makes your stats understandable and shareable within your organization. We cannot see similar functionality in other tools out there and Google are currently really pushing to become the number one in Analytics online.</p>
<h2>The functionality is there but are the customers?</h2>
<p>To really stem the iron, they probably have to start charging for their services. I suppose that&#8217;s the only way to get on with huge organizations that are used to pay a lot of money for things that can be easily obtained for free. On a less sarcastic note, Google really has to do something about data ownership. Corporations need to know that they own their data, and that they can choose whether or not they share this data with Google.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/XfPx4Sus_CY&amp;hl=en_US&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/XfPx4Sus_CY&amp;hl=en_US&amp;fs=1&amp;" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<h2>User Case of Google Analytics Annotations</h2>
<p>So, the working process with Annotations would probably be that you have a shared corporate account for your Google Analytics. An analyst within the organization or a consultant monitors the activity, sets up a dashboard and makes notes. A marketeer goes into the tool and adds an annotation the day they launch a campaign, the analyst tracks the campaign and determines success events with regards to the overall business goals. The CEO can at any time enter his or her dashboard and follow the market activity as it evolves.</p>
<p>The marketeer gets instant feedback and can adapt to what is happening, the analyst gets an explanation to variations in the metrics and the CEO will be able to follow it all from his or her computer screen. Simple, effective and co-operative. Nice in other words.</p>
<p>//Jesper</p>
]]></content:encoded>
			<wfw:commentRss>http://jesperastrom.com/google-analytics/google-analytics-annotations/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
	</channel>
</rss>
                 