<?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; burke</title>
	<atom:link href="http://www.sarahdeatley.com/blog/tag/burke/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>I&#8217;m in UX mode</title>
		<link>http://www.sarahdeatley.com/blog/2009/07/01/im-in-ux-mode/</link>
		<comments>http://www.sarahdeatley.com/blog/2009/07/01/im-in-ux-mode/#comments</comments>
		<pubDate>Wed, 01 Jul 2009 19:10:22 +0000</pubDate>
		<dc:creator>Sarah</dc:creator>
				<category><![CDATA[UX]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[burke]]></category>
		<category><![CDATA[candles]]></category>
		<category><![CDATA[ClickTale]]></category>
		<category><![CDATA[excel]]></category>
		<category><![CDATA[mock-ups]]></category>
		<category><![CDATA[scrolling]]></category>
		<category><![CDATA[user analysis]]></category>

		<guid isPermaLink="false">http://www.sarahdeatley.com/blog/?p=136</guid>
		<description><![CDATA[
			
				
			
		
I guess I was feeling too web analytically inclined lately because I have been only reading about IA/UX stuff now.  There was an interesting research posting by ClickTale, that studied how users scroll and whether or not they are actually reading things below the fold.  There are 2 parts to the study, but part 2 [...]]]></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%2F01%2Fim-in-ux-mode%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.sarahdeatley.com%2Fblog%2F2009%2F07%2F01%2Fim-in-ux-mode%2F&amp;source=sarahd23&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>I guess I was feeling too web analytically inclined lately because I have been only reading about IA/UX stuff now.  There was an interesting research posting by <a href="http://blog.clicktale.com/2007/10/05/clicktale-scrolling-research-report-v20-part-1-visibility-and-scroll-reach/" target="_blank">ClickTale</a>, that studied how users scroll and whether or not they are actually reading things below the fold.  There are 2 parts to the study, but part 2 is where they give substantial conclusions and advice.</p>
<p>Turns out people do scroll. Go figure. Its relative to the position in the page though, and people&#8217;s attention span drops dramatically after the top until they get to the footer, which they pay close attention to. Here are the main recommendations:</p>
<blockquote>
<ul>
<li><em>The most valuable web page real-estate is located near the page top, between 0 and 800 pixels. Visitor Attention and Page Exposure peak at about the 540 pixel-line.</em></li>
<li><em>If you have a long web page,  add “stop points” such as headers and images to prevent your visitors from quickly scrolling down the page. It will prevent their attention from waning towards the end of the page.</em></li>
<li><em>The footer of your page is important! Users do pay quite a bit of attention to that area of your page.</em></li>
</ul>
</blockquote>
<p>This is interesting to me because the primary argument of a person sitting in on a redesign meeting at the Burke was that no one will ever look below the fold, so they asked me to make a different mock-up reflecting that.  While I think the most important/engaging content should remain above the fold, it turned a content-rich page into something that does not have much content because of the design restrictions imposed. You can see an earlier mock-up in the <a href="http://www.sarahdeatley.com/portfolio/ia.php" target="_self">portfolio</a> section, but I was undecided on whether this was a better alternative or not. I would post the new mock-up but I don&#8217;t know if that&#8217;s allowed yet.</p>
<div id="attachment_142" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.sarahdeatley.com/blog/wp-content/uploads/2009/07/tn_visibility_vs_absolute_scrolling_reach.gif" rel="lightbox[136]"><img class="size-medium wp-image-142" title="complicated graph from clicktale" src="http://www.sarahdeatley.com/blog/wp-content/uploads/2009/07/tn_visibility_vs_absolute_scrolling_reach-300x204.gif" alt="Uber complicated graph from ClickTale" width="300" height="204" /></a><p class="wp-caption-text">Uber complicated graph from ClickTale</p></div>
<p>And if anyone is in the market for an amazing smelling candle, I bought the Aloha Orchid one from <a href="http://www.anthropologie.com/anthro/catalog/productdetail.jsp?_dyncharset=ISO-8859-1&amp;_dynSessConf=-1757103257737459554&amp;id=690161&amp;parentid=BATH_CANDLES_CANDLES&amp;pushId=BATH_CANDLES&amp;prepushId=BATH_CANDLES_CANDLES&amp;popId=BATHING&amp;sortProperties=&amp;navCount=7&amp;navAction=poppushpush&amp;fromCategoryPage=true&amp;selectedProductSize=&amp;selectedProductSize1=&amp;color=vol&amp;colorName=VOLCANO" target="_blank">Anthropologie</a>. Very nice. And all the millions of people who decided to make identical Excel macro tutorials need to stop.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sarahdeatley.com/blog/2009/07/01/im-in-ux-mode/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>What do I do with this long tail?</title>
		<link>http://www.sarahdeatley.com/blog/2009/06/30/what-do-i-do-with-this-long-tail/</link>
		<comments>http://www.sarahdeatley.com/blog/2009/06/30/what-do-i-do-with-this-long-tail/#comments</comments>
		<pubDate>Tue, 30 Jun 2009 20:56:13 +0000</pubDate>
		<dc:creator>Sarah</dc:creator>
				<category><![CDATA[Web Analytics]]></category>
		<category><![CDATA[Avinash Kaushik]]></category>
		<category><![CDATA[burke]]></category>
		<category><![CDATA[content]]></category>
		<category><![CDATA[keywords]]></category>
		<category><![CDATA[long tail]]></category>
		<category><![CDATA[web analytics]]></category>
		<category><![CDATA[ZAAZ]]></category>

		<guid isPermaLink="false">http://www.sarahdeatley.com/blog/?p=125</guid>
		<description><![CDATA[
			
				
			
		
I was minding my own business, looking at some data in Google Analytics, and then I realized that one data set pretty much was a perfect example of the long tail. A) I was excited that I even recognized it when looking at a table, and b) I didn&#8217;t know what it really meant, but [...]]]></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%2Fwhat-do-i-do-with-this-long-tail%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.sarahdeatley.com%2Fblog%2F2009%2F06%2F30%2Fwhat-do-i-do-with-this-long-tail%2F&amp;source=sarahd23&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>I was minding my own business, looking at some data in Google Analytics, and then I realized that one data set pretty much was a perfect example of the long tail. A) I was excited that I even recognized it when looking at a table, and b) I didn&#8217;t know what it really meant, but I did think it would be important to investigate.</p>
<blockquote><p><strong><a href="http://www.longtail.com/the_long_tail/2005/09/long_tail_101.html" target="_blank">General definition</a></strong>: increasingly shifting away from a focus on a relatively small number of &#8220;hits&#8221; (mainstream products and markets) at the head of the demand curve and toward a huge number of niches in the tail.</p>
<p><a href="http://www.kaushik.net/avinash/2007/03/excellent-analytics-tip-10-how-thick-is-your-head-and-how-long-is-your-tail.html" target="_blank"><strong>SEO definition</strong></a>: lots of key phrases individually account for little traffic by themselves but collectively all those key phrases often could account for a huge amount of traffic.</p>
<div id="attachment_126" class="wp-caption alignright" style="width: 310px"><a href="http://www.sarahdeatley.com/blog/wp-content/uploads/2009/06/rawtail.jpg" rel="lightbox[125]"><img class="size-medium wp-image-126" title="long tail" src="http://www.sarahdeatley.com/blog/wp-content/uploads/2009/06/rawtail-300x163.jpg" alt="long tail example" width="300" height="163" /></a><p class="wp-caption-text">long tail example</p></div></blockquote>
<p>As usual, I first turned to the <a href="http://www.kaushik.net/avinash/2007/03/excellent-analytics-tip-10-how-thick-is-your-head-and-how-long-is-your-tail.html" target="_blank">Occam&#8217;s Razor blog</a> for answers, and it seems like the long tail can mean different things in different contexts for analytics.  When you are looking at keywords, and there a lot of keywords with small usage that add up to a big percentage, you would be interested in learning more about the tail. The tail keywords tend to be subject based versus branding keywords. So ours might be &#8220;Northwest Indians&#8221; versus &#8220;Burke Museum.&#8221;  These keywords could be better utilized in the content of the site if this is what people are searching on.</p>
<p>On the other hand, I was looking at the top pages for a subsite, which <a href="http://www.kaushik.net/avinash/2007/05/excellent-analytics-tip-11-measure-effectiveness-of-your-web-pages.html" target="_blank">Avinash compares</a> to a &#8220;cliff&#8221; at the edge of the long tail.  You should be trying to move the cliff further along the long tail ideally.  In that case, most people are looking at the head pages only, and very few reach the long tail pages.</p>
<p style="text-align: center;">
<div id="attachment_128" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.sarahdeatley.com/blog/wp-content/uploads/2009/06/longtail2.gif" rel="lightbox[125]"><img class="size-medium wp-image-128" title="Burke Long Tail" src="http://www.sarahdeatley.com/blog/wp-content/uploads/2009/06/longtail2-300x76.gif" alt="Content Long Tail" width="300" height="76" /></a><p class="wp-caption-text">Content Long Tail</p></div>
<p>The overall gist of the long tail examples was that keyword analysis should focus on the long tail, and with content you can initially focus on the head of the tail.  I guess what I&#8217;m having trouble with is how you apply this to other metrics, like average time spent on page, or bounce rate.  Are keywords the primary instance in which you want to initially focus on the long tail to get more insight into user behavior?  How do I decide which pages in the long tail to focus on for top content? If I see another long tail, should I just pretend like I didn&#8217;t see it so I don&#8217;t get confused again?</p>
<p>Last day of work at the Burke Museum. I am sad I won&#8217;t get to finish some projects or keep working on things, but hopefully they get a lot of benefits from what I did while I was here.   Mainly I&#8217;m excited to start at ZAAZ after I relax for a few days.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sarahdeatley.com/blog/2009/06/30/what-do-i-do-with-this-long-tail/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>There Once Was A Man From Nantucket&#8230;</title>
		<link>http://www.sarahdeatley.com/blog/2009/06/25/there-once-was-a-man-from-nantucket/</link>
		<comments>http://www.sarahdeatley.com/blog/2009/06/25/there-once-was-a-man-from-nantucket/#comments</comments>
		<pubDate>Thu, 25 Jun 2009 15:15:01 +0000</pubDate>
		<dc:creator>Sarah</dc:creator>
				<category><![CDATA[Web Analytics]]></category>
		<category><![CDATA[burke]]></category>
		<category><![CDATA[engagement]]></category>
		<category><![CDATA[michael jackson]]></category>
		<category><![CDATA[reporting]]></category>
		<category><![CDATA[user analysis]]></category>
		<category><![CDATA[web analytics]]></category>

		<guid isPermaLink="false">http://www.sarahdeatley.com/blog/?p=57</guid>
		<description><![CDATA[
			
				
			
		
In my last few days at the Burke Museum, I&#8217;ve been tasked with doing anything web analytics possible until I leave.  There&#8217;s so much more I wanted to accomplish in terms of figuring out goals for the site and assessing who our users are, but hopefully web analytics won&#8217;t get tossed aside forever after I&#8217;m [...]]]></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%2F25%2Fthere-once-was-a-man-from-nantucket%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.sarahdeatley.com%2Fblog%2F2009%2F06%2F25%2Fthere-once-was-a-man-from-nantucket%2F&amp;source=sarahd23&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>In my last few days at the Burke Museum, I&#8217;ve been tasked with doing anything web analytics possible until I leave.  There&#8217;s so much more I wanted to accomplish in terms of figuring out goals for the site and assessing who our users are, but hopefully web analytics won&#8217;t get tossed aside forever after I&#8217;m gone.</p>
<p>We&#8217;ve already done overall assessments and reports on site metrics, so I&#8217;ve been trying to figure out actions they can take that will be easy to code and maintain.  Dealing with user engagement is the biggest issue so far, especially because measuring it is difficult and open to interpretation. If they at least attempt to address engaging and interacting with our users, I will die happy.</p>
<div id="attachment_63" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.sarahdeatley.com/blog/wp-content/uploads/2009/06/education_graph_edit.gif" rel="lightbox[57]"><img class="size-medium wp-image-63" title="Time Graph" src="http://www.sarahdeatley.com/blog/wp-content/uploads/2009/06/education_graph_edit-300x58.gif" alt="Average Time Graph" width="300" height="58" /></a><p class="wp-caption-text">Average Time Graph</p></div>
<p>I&#8217;ve also focused on looking at things that we redesigned recently to track their performance since they went live.  I&#8217;m totally a nerd and I got really into how we could track conversions for the Education sub-site, and how we could better market them for next year.  Common conversions for an e-commerce site might be how many people get to a confirmation page after buying something, but for an informative site like the Burke Museum, its more difficult to decide what counts as a user that basically &#8220;did what we want them to do.&#8221;  Also, the charts I put in the reports are very pretty.</p>
<p>Mainly I&#8217;ve just been producing reports that I&#8217;m not sure anyone has the time or interest in reading, but what else is there to do when I&#8217;m going to be gone soon? I should think of something more creative. They might not read a report, but they will always remember a dirty limerick on web analytics.</p>
<p>&#8230;and in other news <a href="http://www.tmz.com/2009/06/25/michael-jackson-dies-death-dead-cardiac-arrest/" target="_blank">Michael Jackson died</a>?? Sad times.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sarahdeatley.com/blog/2009/06/25/there-once-was-a-man-from-nantucket/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Happy Father&#8217;s Day</title>
		<link>http://www.sarahdeatley.com/blog/2009/06/22/happy-fathers-day/</link>
		<comments>http://www.sarahdeatley.com/blog/2009/06/22/happy-fathers-day/#comments</comments>
		<pubDate>Mon, 22 Jun 2009 01:37:31 +0000</pubDate>
		<dc:creator>Sarah</dc:creator>
				<category><![CDATA[Web Analytics]]></category>
		<category><![CDATA[Avinash Kaushik]]></category>
		<category><![CDATA[burke]]></category>
		<category><![CDATA[data visualization]]></category>
		<category><![CDATA[excel]]></category>
		<category><![CDATA[father's day]]></category>
		<category><![CDATA[web analytics]]></category>
		<category><![CDATA[ZAAZ]]></category>

		<guid isPermaLink="false">http://www.sarahdeatley.com/blog/?p=25</guid>
		<description><![CDATA[
			
				
			
		
I think its only appropriate that in honor of my father, an accountant, that I spent the day BBQ-ing and playing with Excel.  Apparently in web analytics, reporting tools gather the data, but you manipulate or &#8220;do cool stuff&#8221; with it in Excel.  So I now know way more than I ever thought I needed [...]]]></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%2F22%2Fhappy-fathers-day%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.sarahdeatley.com%2Fblog%2F2009%2F06%2F22%2Fhappy-fathers-day%2F&amp;source=sarahd23&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>I think its only appropriate that in honor of my father, an accountant, that I spent the day BBQ-ing and playing with Excel.  Apparently in web analytics, reporting tools gather the data, but you manipulate or &#8220;do cool stuff&#8221; with it in Excel.  So I now know way more than I ever thought I needed to about PivotTables and such (which will come in handy at ZAAZ). Excel 2007 does seem to make it pretty easy to do all of the basic things like calculating sums, but I have a sneaking feeling that I will be doing more complicated things than this.</p>
<p>I should probably be focusing equally on data visualization (i.e. charts and graphs), because that&#8217;s how I&#8217;ll be getting my point across to clients.  <a href="http://www.kaushik.net/avinash/2006/07/the-awesome-power-of-data-visualization.html" target="_blank">Avinash Kaushik says</a> that the best visualizations come from:</p>
<blockquote><p>&#8220;1) a deep understanding of the goal / objectives 2) from thinking beyond what standard trend lines or stacked bar graphs can provide.&#8221;</p></blockquote>
<p>I tried to emphasize my points in my last 2 web analytics reports for the Burke through varied and clear charts and graphs, but I haven&#8217;t gotten feedback yet on those.  I think the challenge is in making the numbers tangible without inducing death by bar graph. I tend to understand things better through words, so it requires creative thinking for me to not rely on rhetoric.</p>
<div id="attachment_33" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.sarahdeatley.com/blog/wp-content/uploads/2009/06/rainbow.jpg" rel="lightbox[25]"><img class="size-medium wp-image-33" title="rainbow" src="http://www.sarahdeatley.com/blog/wp-content/uploads/2009/06/rainbow-300x240.jpg" alt="First day of summer in Seattle." width="300" height="240" /></a><p class="wp-caption-text">First day of summer in Seattle.</p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.sarahdeatley.com/blog/2009/06/22/happy-fathers-day/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
