<?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>Sarah DeAtley &#187; The Grok</title>
	<atom:link href="http://www.sarahdeatley.com/blog/tag/the-grok/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.sarahdeatley.com</link>
	<description>information + analysis + design</description>
	<lastBuildDate>Mon, 17 May 2010 06:29:28 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Having issues with event tracking in Google Analytics? Read on&#8230;</title>
		<link>http://www.sarahdeatley.com/blog/2009/07/29/having-issues-with-event-tracking-in-google-analytics-read-on/</link>
		<comments>http://www.sarahdeatley.com/blog/2009/07/29/having-issues-with-event-tracking-in-google-analytics-read-on/#comments</comments>
		<pubDate>Thu, 30 Jul 2009 05:40:48 +0000</pubDate>
		<dc:creator>Sarah</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[Web Analytics]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[burke]]></category>
		<category><![CDATA[google analytics]]></category>
		<category><![CDATA[issues]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[problems]]></category>
		<category><![CDATA[The Grok]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://www.sarahdeatley.com/blog/?p=333</guid>
		<description><![CDATA[
			
				
			
		
Note: feel free to ping me or leave a comment if you are having major issues!
Yesterday the event tracking on a site was not working, and someone thought it might be that I had missed a call to the ga.js file or some extra Javascript. My first thought was &#8220;This is why I hate Javascript.&#8221; [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px; margin-bottom: 5px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.sarahdeatley.com%2Fblog%2F2009%2F07%2F29%2Fhaving-issues-with-event-tracking-in-google-analytics-read-on%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.sarahdeatley.com%2Fblog%2F2009%2F07%2F29%2Fhaving-issues-with-event-tracking-in-google-analytics-read-on%2F&amp;source=sarahd23&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p><em><strong>Note: feel free to ping me or leave a comment if you are having major issues!</strong></em></p>
<p>Yesterday the <a href="http://www.sarahdeatley.com/blog/2009/07/07/event-tracking-in-google-analytics/" target="_self">event tracking </a>on a site was not working, and someone thought it might be that I had missed a call to the ga.js file or some extra Javascript. My first thought was &#8220;This is why I hate Javascript.&#8221; That thought recurred throughout my investigation process, but I decided to save some people time and effort by posting a few things you could check before giving up and crying. My particular example was an onClick event, but the same things could apply to other situations.</p>
<ol>
<li><strong>Check the JavaScript call<em>. </em></strong>So you must understand that Javascript (which I shall now write as JS) can be the best and worst scripting language. Very powerful and can do cool things like animation (and your analytics tracking), but also a pain in that you must be very careful with syntax and punctuation. One easy way to see if your JS is creating errors is by installing the <a href="https://addons.mozilla.org/en-US/firefox/addon/60" target="_blank">Web Developer&#8217;s Toolbar </a>in Firefox, it will show you when there are JS errors and a myriad of other useful things.<br />
<blockquote style="font-size: 15px"><p><em>Example</em>: <strong>onclick=&#8221;pageTracker._trackEvent(&#8220;Foo&#8221;,&#8221;Bar&#8221;,&#8221;JS&#8221;);&#8221;</strong> This will be wrong because you have double quotation marks instead of apostrophes within the parentheses. So the page will read it as &#8220;pageTracker.trackEvent(&#8221; which will not do anything. Fix it like this: <strong>onclick=&#8221;pageTracker._trackEvent(&#8216;Foo&#8217;,'Bar&#8217;,'JS&#8217;);&#8221;</strong>.</p></blockquote>
</li>
<li><strong>Is the variable actually pageTracker? </strong>In most cases, if you&#8217;re not changing the Google Analytics code that is on every page, it should be pageTracker. If the variable is named anything else, like movieTracker or pageCounter, then you need to fix the call in the onClick and change it to: onclick=&#8221;movieTracker._trackEvent(&#8230;);&#8221; This is the part of the code you want to pay attention to:<br />
<blockquote style="font-size: 15px"><p>try {<br />
<em>var <strong>pageTracker</strong></em> = _gat._getTracker(&#8220;UA-xxxxxx-x&#8221;);<br />
<strong><em>pageTracker</em></strong>._trackPageview();<br />
} catch(err) {}</p></blockquote>
</li>
<li><strong>Where your code at?</strong> This ended up being my problem. People recommend that the GA code should be inserted at the footer of the page to not slow down the loading time of a page. The catch is, the JS file/definition of the variable pageTracker may need to be at the top of the page for _trackEvent to do its thing. If you try moving the code with the ga.js file to the head of the page, it should help. Or it helped me anyway.</li>
</ol>
<p>As much as I hate debugging JS, I think it has really helped me to have knowledge of how it works, so if this is all kinds of confusing, try working through the <a href="http://http://www.w3schools.com/JS/default.asp" target="_blank">W3C tutorials</a>.</p>
<h3>Misc.</h3>
<p><a href="http://www.grokdotcom.com/2009/07/29/turning-web-analytics-into-nonprofit-success/" target="_blank">The Grok delivers</a>!! I was tweeting with <a href="http://twitter.com/thegrok" target="_blank">@TheGrok</a> and I asked if there was any way he could post about web analytics for non-profits. Brendan Regan wrote an awesomely helpful post about it. I will probably comment more about it later, but still, very cool.</p>
<p>And for those who use Twitter, #wa is being deprecated in favor of #measure. See Web Analytics Demystified for an <a href="http://blog.webanalyticsdemystified.com/weblog/2009/07/measure-is-the-new-wa-in-twitter.html" target="_blank">explanation</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sarahdeatley.com/blog/2009/07/29/having-issues-with-event-tracking-in-google-analytics-read-on/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Bonnie, Good Fries, and the Locks</title>
		<link>http://www.sarahdeatley.com/blog/2009/06/30/bonnie-good-fries-and-the-locks/</link>
		<comments>http://www.sarahdeatley.com/blog/2009/06/30/bonnie-good-fries-and-the-locks/#comments</comments>
		<pubDate>Tue, 30 Jun 2009 03:46:42 +0000</pubDate>
		<dc:creator>Sarah</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[UX]]></category>
		<category><![CDATA[ballard locks]]></category>
		<category><![CDATA[bonnie]]></category>
		<category><![CDATA[cafe besalu]]></category>
		<category><![CDATA[farmers market]]></category>
		<category><![CDATA[good fries place]]></category>
		<category><![CDATA[ice cream]]></category>
		<category><![CDATA[jafar]]></category>
		<category><![CDATA[mammals of washington]]></category>
		<category><![CDATA[mock-ups]]></category>
		<category><![CDATA[rhonj]]></category>
		<category><![CDATA[scotland]]></category>
		<category><![CDATA[The Grok]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://www.sarahdeatley.com/blog/?p=94</guid>
		<description><![CDATA[
			
				
			
		
Bonnie, who I studied with in Scotland, is visiting with her friend Yael until Tuesday! We went to Cafe Besalu, the Ballard Farmers&#8217; Market, and then got lost trying to get to the Mac and Jack&#8217;s brewery for the tour. So we saw parts of Redmond that are not worth seeing really.  Then we came [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px; margin-bottom: 5px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.sarahdeatley.com%2Fblog%2F2009%2F06%2F30%2Fbonnie-good-fries-and-the-locks%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.sarahdeatley.com%2Fblog%2F2009%2F06%2F30%2Fbonnie-good-fries-and-the-locks%2F&amp;source=sarahd23&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>Bonnie, who I studied with in Scotland, is visiting with her friend Yael until Tuesday! We went to <a href="http://www.urbanspoon.com/r/1/5596/restaurant/Ballard/Cafe-Besalu-Seattle" target="_blank">Cafe Besalu</a>, the <a href="http://www.fremontmarket.com/ballard/" target="_blank">Ballard Farmers&#8217; Market</a>, and then got lost trying to get to the <a href="http://www.macandjacks.com/index.php" target="_blank">Mac and Jack&#8217;s brewery</a> for the tour. So we saw parts of Redmond that are not worth seeing really.  Then we came back, ate at the <a href="http://www.oldtownalehouse.com/" target="_blank">Good Fries Place</a>, and walked around the Locks and salmon ladder for a bit. Finally rounded things off with watching an episode of Real Housewives of New Jersey and deciding that one lady strongly resembles Jafar.</p>
<div id="attachment_95" class="wp-caption alignleft" style="width: 180px"><a href="http://www.sarahdeatley.com/blog/wp-content/uploads/2009/06/danielle.jpg" rel="lightbox[94]"><img class="size-medium wp-image-95" title="Real Housewife of New Jersey" src="http://www.sarahdeatley.com/blog/wp-content/uploads/2009/06/danielle-213x300.jpg" alt="Real Housewife of New Jersey" width="170" height="240" /></a><p class="wp-caption-text">Real Housewife of New Jersey</p></div>
<div id="attachment_96" class="wp-caption alignright" style="width: 163px"><a href="http://www.sarahdeatley.com/blog/wp-content/uploads/2009/06/jafar.jpg" rel="lightbox[94]"><img class="size-full wp-image-96" title="Jafar" src="http://www.sarahdeatley.com/blog/wp-content/uploads/2009/06/jafar.jpg" alt="Jafar from Aladdin" width="153" height="227" /></a><p class="wp-caption-text">Jafar from Aladdin</p></div>
<h1 style="text-align: center; font-size=">=</h1>
<p style="clear: both">Today was my 2nd to last day at the Burke, and I got the final mock-up of new Ethnology landing pages done, as well as an analytics report on <a href="http://www.&lt;/code&gt;washington.edu/burkemuseum/collections/mammalogy/mamwash" target="_blank">Mammals of Washington</a>.  Ethnology curator &amp; co. seemed to like the mock-ups, but they also seemed to forget that change is good. And the user is not like me. Etc. Hopefully it gets implemented in the near future but who knows.  Tonight I finally visited <a href="http://www.mollymoonicecream.com/" target="_blank">Molly Moon</a>&#8217;s ice cream in Wallingford, which I highly recommend now. Birthday cake flavored ice cream is the bomb.  Also <a href="http://www.grokdotcom.com/" target="_blank">The Grok</a> is going to hopefully write a post about analytics for non-profits thanks to our Twitter messaging. Yay!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sarahdeatley.com/blog/2009/06/30/bonnie-good-fries-and-the-locks/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>7 Data Visualizations That I like</title>
		<link>http://www.sarahdeatley.com/blog/2009/06/26/7-data-visualizations-that-i-like/</link>
		<comments>http://www.sarahdeatley.com/blog/2009/06/26/7-data-visualizations-that-i-like/#comments</comments>
		<pubDate>Fri, 26 Jun 2009 19:06:59 +0000</pubDate>
		<dc:creator>Sarah</dc:creator>
				<category><![CDATA[Data Visualization]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[blogosphere]]></category>
		<category><![CDATA[blogs]]></category>
		<category><![CDATA[books]]></category>
		<category><![CDATA[data visualization]]></category>
		<category><![CDATA[feelings]]></category>
		<category><![CDATA[graphs]]></category>
		<category><![CDATA[iSchool]]></category>
		<category><![CDATA[ixd]]></category>
		<category><![CDATA[michael jackson]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[The Grok]]></category>
		<category><![CDATA[words]]></category>

		<guid isPermaLink="false">http://www.sarahdeatley.com/blog/?p=68</guid>
		<description><![CDATA[
			
				
			
		
So in my continuing quest to figure out new ways to visualize data, I came across this article through The Grok, (which I realize is from 2007) in Smashing Magazine on new and interesting approaches to data visualization.  I tested some of them out and I wanted to share and post pictures of the results [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px; margin-bottom: 5px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.sarahdeatley.com%2Fblog%2F2009%2F06%2F26%2F7-data-visualizations-that-i-like%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.sarahdeatley.com%2Fblog%2F2009%2F06%2F26%2F7-data-visualizations-that-i-like%2F&amp;source=sarahd23&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>So in my continuing quest to figure out new ways to <a href="http://www.sarahdeatley.com/blog/?p=25" target="_self">visualize data</a>, I came across this article through <a href="http://www.grokdotcom.com/2007/07/30/do-you-know-how-to-showcase-your-data/">The Grok</a>, (which I realize is from 2007) in <a href="http://www.smashingmagazine.com/2007/08/02/data-visualization-modern-approaches/" target="_blank">Smashing Magazine</a> on new and interesting approaches to data visualization.  I tested some of them out and I wanted to share and post pictures of the results (though some are better when in action than still).</p>
<ol>
<li><a href="http://amaztype.tha.jp/" target="_blank">Amaztype</a>.  These people utilize Amazon Web Services to make a word of your choice based on book/album/dvd covers. You can sort of see the graphic design trends that people follow. I especially like that Goodnight Moon made it onto the Night visualization.
<div id="attachment_69" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.sarahdeatley.com/blog/wp-content/uploads/2009/06/night.gif" rel="lightbox[68]"><img class="size-medium wp-image-69" title="night" src="http://www.sarahdeatley.com/blog/wp-content/uploads/2009/06/night-300x77.gif" alt="Night" width="300" height="77" /></a><p class="wp-caption-text">Night</p></div>
<div id="attachment_70" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.sarahdeatley.com/blog/wp-content/uploads/2009/06/light.gif" rel="lightbox[68]"><img class="size-medium wp-image-70" title="light" src="http://www.sarahdeatley.com/blog/wp-content/uploads/2009/06/light-300x77.gif" alt="Light" width="300" height="77" /></a><p class="wp-caption-text">Light</p></div></li>
<li><a href="http://www.dashes.com/anil/2007/07/pixels-are-the-new-pies.html?_" target="_blank">Death of the Pie Chart</a>.  Using pixels instead of pie charts to demonstrate relative size. I like it.
<p><div id="attachment_75" class="wp-caption aligncenter" style="width: 385px"><a href="http://www.sarahdeatley.com/blog/wp-content/uploads/2009/06/square-graphs.png" rel="lightbox[68]"><img class="size-full wp-image-75" title="square-graphs" src="http://www.sarahdeatley.com/blog/wp-content/uploads/2009/06/square-graphs.png" alt="Pixel graphs" width="375" height="210" /></a><p class="wp-caption-text">Pixel graphs</p></div></li>
<li><a href="http://www.wefeelfine.org/movements.html" target="_blank">We Feel Fine</a>.  This site does amazing things to get a sense of how the world is doing by &#8220;harvesting feelings from weblogs.&#8221; You can filter based on feeling, gender, age, weather, location, and date for 6 different ways of viewing the data. I tried out Madness, Montage, Murmurs and Mobs.
<p><div id="attachment_77" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.sarahdeatley.com/blog/wp-content/uploads/2009/06/sad.gif" rel="lightbox[68]"><img class="size-medium wp-image-77" title="sadness in madness" src="http://www.sarahdeatley.com/blog/wp-content/uploads/2009/06/sad-300x94.gif" alt="Filtered Madness by the feeling &quot;sad&quot;, possibly about Michael Jackson." width="300" height="94" /></a><p class="wp-caption-text">Filtered Madness by the feeling &quot;sad&quot;, possibly about Michael Jackson.</p></div>
<div id="attachment_78" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.sarahdeatley.com/blog/wp-content/uploads/2009/06/stormy.jpg" rel="lightbox[68]"><img class="size-medium wp-image-78" title="stormy" src="http://www.sarahdeatley.com/blog/wp-content/uploads/2009/06/stormy-300x213.jpg" alt="An image from Montage." width="300" height="213" /></a><p class="wp-caption-text">An image from Montage.</p></div></li>
<li><a href="http://www.aharef.info/2006/05/websites_as_graphs.htm" target="_blank">Websites as graphs</a>.  Graphs by the HTML code, so tables, links, images, etc. get different colored nodes. I made a graph of this site but I didn&#8217;t think it looked too interesting.</li>
<li><a href="http://www.munterbund.de/visualisierung_textaehnlichkeiten/essay.php" target="_blank">Book/essay word visualization</a>.  A German Interaction Design Institute wanted to show the connection between words and ideas better and made an awesome sort of Venn diagram. One pretty much includes everything that I learned at the <a href="http://www.ischool.washington.edu" target="_blank">iSchool</a>, and some extra German words tossed in.
<p><div id="attachment_81" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.sarahdeatley.com/blog/wp-content/uploads/2009/06/hug_gross_big.jpg" rel="lightbox[68]"><img class="size-medium wp-image-81" title="word diagram" src="http://www.sarahdeatley.com/blog/wp-content/uploads/2009/06/hug_gross_big-300x300.jpg" alt="Visualization of words in an interaction design text." width="300" height="300" /></a><p class="wp-caption-text">Visualization of words in an interaction design text.</p></div></li>
<li><a href="http://www.turbulence.org/Works/song/mono.html" target="_blank">The Shape of Song</a>.  Graphical representations of music. I did one for Chopin&#8217;s Nocturne in E flat.
<p><div id="attachment_82" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.sarahdeatley.com/blog/wp-content/uploads/2009/06/chopin.gif" rel="lightbox[68]"><img class="size-medium wp-image-82" title="chopin visualization" src="http://www.sarahdeatley.com/blog/wp-content/uploads/2009/06/chopin-300x180.gif" alt="Visualization of Nocturne in E flat." width="300" height="180" /></a><p class="wp-caption-text">Visualization of Nocturne in E flat.</p></div></li>
<li><a href="http://www.visualcomplexity.com/vc/" target="_blank">Visual Complexity</a>.  The mother lode of data visualization, a large gallery of different types. I was really fascinated by the transportation ones.  The ones I&#8217;m showing here are of the <a href="http://www.telegeography.com/products/map_internet/index.php" target="_blank">global internet distribution</a> and the <a href="http://radio.weblogs.com/0104369/stories/2003/11/10/visualizationOfBlogspace.html" target="_blank">blogosphere</a> from &#8220;inspirer&#8221; radiating to &#8220;inspiree.&#8221;
<p><div id="attachment_83" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.sarahdeatley.com/blog/wp-content/uploads/2009/06/internet_map09_lg.gif" rel="lightbox[68]"><img class="size-medium wp-image-83" title="internet_map 09" src="http://www.sarahdeatley.com/blog/wp-content/uploads/2009/06/internet_map09_lg-300x213.gif" alt="Global internet distribution" width="300" height="213" /></a><p class="wp-caption-text">Global internet distribution</p></div>
<p><div id="attachment_84" class="wp-caption aligncenter" style="width: 283px"><a href="http://www.sarahdeatley.com/blog/wp-content/uploads/2009/06/blogosphere.png" rel="lightbox[68]"><img class="size-medium wp-image-84" title="blogosphere" src="http://www.sarahdeatley.com/blog/wp-content/uploads/2009/06/blogosphere-273x300.png" alt="Blogosphere from inspirer in the center radiating to inspiree." width="273" height="300" /></a><p class="wp-caption-text">Blogosphere from inspirer in the center radiating to inspiree.</p></div></li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.sarahdeatley.com/blog/2009/06/26/7-data-visualizations-that-i-like/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
