<?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>FreshClicks &#187; Web Analytics</title>
	<atom:link href="http://www.freshclicks.net/category/web-analytics/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.freshclicks.net</link>
	<description>Marketing and Web Analytics Strategies</description>
	<lastBuildDate>Sun, 05 Feb 2012 00:30:48 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Search engines as bookmarks: An attribution problem</title>
		<link>http://www.freshclicks.net/web-analytics/search-engines-as-bookmarks-an-attribution-problem/</link>
		<comments>http://www.freshclicks.net/web-analytics/search-engines-as-bookmarks-an-attribution-problem/#comments</comments>
		<pubDate>Tue, 14 Dec 2010 22:56:20 +0000</pubDate>
		<dc:creator>Lary Stucker</dc:creator>
				<category><![CDATA[Web Analytics]]></category>
		<category><![CDATA[attribution]]></category>
		<category><![CDATA[Initial referrer]]></category>
		<category><![CDATA[Tom's shoes]]></category>

		<guid isPermaLink="false">http://www.freshclicks.net/?p=798</guid>
		<description><![CDATA[I needed a new pair of shoes. While on my lunch break I happened to be reading an article at www.fastcompany.com and an ad for a pair of Tom&#8217;s caught my eye. I clicked the link, liked what I saw, but my lunch break just ended so I couldn&#8217;t buy just yet. The next day, instead [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-medium wp-image-800" title="Toms-grey-flannel" src="http://www.freshclicks.net/wp-content/uploads/2010/12/m-grey-flannel1-300x213.jpg" alt="" width="300" height="213" />I needed a new pair of shoes. While on my lunch break I happened to be reading an article at <a href="http://www.fastcompany.com">www.fastcompany.com</a> and an ad for a pair of Tom&#8217;s caught my eye. I clicked the link, liked what I saw, but my lunch break just ended so I couldn&#8217;t buy just yet. The next day, instead of trying to remember the URL,I fired up my favorite search engine, types out &#8220;T-O-M-S-S-H-O-E-S&#8221; and the first result is <a href="http://www.toms.com">Tom’s official website</a>. I visited the site, made my purchase, and a couple days later I (and a child in need) get a new pair of shoes. My search engine usage is pretty common and yet it presents a special kind of problem for web analysis. People are using search engines as a pseudo bookmark tool.<span id="more-798"></span></p>
<h3>Two types of search engine traffic</h3>
<p>We can break search engine traffic into two types: research and bookmark.</p>
<ul>
<li>Research is pretty straightforward; a visitor was looking for a solution to a problem: “I want a new pair of shoes from a company that cares about people.” They use keywords like, &#8220;shoe company that donates shoes&#8221; and they discover a new company.</li>
<li>Search engines as bookmark traffic is much different. “I know the product/company I want, but I am not sure I remember how to get to their website.” These are two very different kinds of search intentions but unfortunately web analytics systems have no way to differentiate the two.</li>
</ul>
<h3>The attribution problem</h3>
<p>Attribution is giving credit to the traffic source that a visitor used before making a purchase or some other event that we value. With all of the major web analytics solutions they have decided that the last source of traffic is the one that should get the credit.</p>
<p>In Google Analytics, when someone visits your website from a referring source, Google Analytics&#8217; JavaScript sets a cookie on the visitor&#8217;s machine with information about the referring source. Each time that visitor returns, the cookie gets overwritten with new referrer information. The only time a traffic source doesn&#8217;t get overwritten is when the visitor types the URL directly into the web browser or if they use a bookmark. This is considered direct traffic and isn&#8217;t seen as attributing to the purchase. Most of the time this makes perfect sense, but when visitors use search engines as a bookmark it skews our data.</p>
<p>Using our previous example of Jason and Tom’s shoes, Google analytics attributes the purchase with the organic search result and no credit goes to the ad. Clearly Jason&#8217;s intent when visiting Google was to get to <a href="http://www.toms.com">Toms.com</a>. The ad that brought him to the website during his research phase doesn&#8217;t get any of the credit.</p>
<p>If this kind of &#8220;search engines as bookmark&#8221; traffic is really just a different kind of direct traffic, then why not report it as such? This will prevent your those brand name keywords from getting credit for the sale and make sure your ads get the credit they deserve.</p>
<h3>A simple solution</h3>
<p>If you’re using Google Analytics you can easily modify the JavaScript code to treat organic brand name traffic as direct traffic. Locate your Google Analytics JavaScript code. If you are using the new code, the first portion will look something like this:</p>
<blockquote><p>var _gaq = _gaq || [];<br />
_gaq.push(['_setAccount', 'UA-123456-7']);<br />
_gaq.push(['_trackPageview']);</p></blockquote>
<p>Just before, &#8220;_gaq.push(['_trackPageview']);&#8221; you will want to add, &#8220;_gaq.push(['_addIgnoredOrganic', 'keyword']);&#8221;, for each brand name keyword you want treated as direct traffic.</p>
<p style="padding-left: 30px;">var _gaq = _gaq || [];<br />
_gaq.push(['_setAccount', 'UA-123456-7']);<br />
_gaq.push(['_addIgnoredOrganic', 'keyword']); // if referrer is organic do not override referrer<br />
_gaq.push(['_trackPageview']);</p>
<p>Now search engine traffic, where the visitor is using your brand names, will be treated as direct traffic by Google Analytics and will not overwrite any previous source information.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.freshclicks.net/web-analytics/search-engines-as-bookmarks-an-attribution-problem/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Did you just break your Google Analytics Installation?</title>
		<link>http://www.freshclicks.net/web-analytics/did-you-just-break-your-google-analytics-installation/</link>
		<comments>http://www.freshclicks.net/web-analytics/did-you-just-break-your-google-analytics-installation/#comments</comments>
		<pubDate>Mon, 06 Jul 2009 20:13:22 +0000</pubDate>
		<dc:creator>Lary Stucker</dc:creator>
				<category><![CDATA[Web Analytics]]></category>
		<category><![CDATA[debugging analytics]]></category>
		<category><![CDATA[Google Analytics]]></category>
		<category><![CDATA[proxy debugger]]></category>

		<guid isPermaLink="false">http://www.freshclicks.net/?p=346</guid>
		<description><![CDATA[How to verify that Google Analytics is capturing data properly With 90+ standard reports, advanced segmentation, custom reporting, and plenty of other amazing enterprise features, I&#8217;m not breaking any new ground here by saying that Google Analytics is a great web analytics solution. It has always bothered me though, that without live tracking it can [...]]]></description>
			<content:encoded><![CDATA[<h3>How to verify that Google Analytics is capturing data properly</h3>
<p><a rel="attachment wp-att-357" href="http://www.freshclicks.net/2009/07/06/web-analytics/did-you-just-break-your-google-analytics-installation/attachment/nocutwire/"><img class="alignright size-thumbnail wp-image-357" title="noCutWire" src="http://www.freshclicks.net/wp-content/images/2009/07/noCutWire-150x150.jpg" alt="noCutWire" width="150" height="150" /></a>With 90+ standard reports, advanced segmentation, custom reporting, and plenty of other amazing enterprise features, I&#8217;m not breaking any new ground here by saying that Google Analytics is a great web analytics solution. It has always bothered me though, that without live tracking it can be difficult to troubleshoot, diagnose problems, confirm that you properly set up your eCommerce conversion tracking or some other custom JavaScript implementation. Waiting 8-12 hours to see if data is still being collected, or if your &#8220;test transaction&#8221; is being reflected in your reports is no way to work in an enterprise environment.</p>
<p><span id="more-346"></span></p>
<h3>The solution is to use an HTTP proxy debugger</h3>
<p>An HTTP proxy (HTTP Monitor) sits between the internet and your web browser. It is able to record and display all of the data that is sent and received between your web browser / client and the server. This makes it easy to see exactly what information is being sent to Google Analytics, so you can quickly diagnose and fix problems.</p>
<p>In my example I am going to use a web debugging application called <a href="http://www.charlesproxy.com/">Charles</a>, you can download a free-trial from their website. There are plenty of other HTTP debugger applications you can use I just happen to use Charles.</p>
<ol>
<li>Launch your application, You may be prompted to give it privileges on your computer.</li>
<li>In your web browser visit the page that you contain your Google Analytics code.</li>
<li><a href="http://www.freshclicks.net/wp-content/images/2009/07/Picture-4.png"><img class="alignright size-medium wp-image-350" title="Debugging Google Analytics" src="http://www.freshclicks.net/wp-content/images/2009/07/Picture-4-300x152.png" alt="Debugging Google Analytics" width="300" height="152" /></a>If you look in the HTTP debugging application you will see all of the HTTP requests that were made by the page. In the list you will see http://www.google-analytics.com</li>
<li>In Chrles you can click on the arrow to reveal the two HTTP request that the page made. The first request was made to by the Google Analytics JavaScript file and load it into your system memory. You can look through the window on the right to see the status file. A response code of 200 means that the JavaScript file was loaded successfully into your browsers memory. So far so good.</li>
<li>The next item in the list is that data string that was sent to Google analytics as a response to you visiting the page. There is a lot of data here but if you break it up by the &#8220;&amp;&#8221; it is easier to find what you are looking for:
<ul>
<li>http://www.google-analytics.com/__utm.gif</li>
<li>?utmwv=4.3.1</li>
<li>&amp;utmn=1482837383</li>
<li>&amp;utmhn=www.freshclicks.net</li>
<li>&amp;utmcs=UTF-8 &#8211; the encoding charset of the content</li>
<li>&amp;utmsr=1280&#215;800 &#8211; screen resolution of the visitors monitor</li>
<li>&amp;utmsc=24-bit</li>
<li>&amp;utmul=en-us &#8211; browsers language setting</li>
<li>&amp;utmje=1</li>
<li>&amp;utmfl=10.0%20r22</li>
</ul>
<ul>
<li>&amp;utmdt=Fresh%20Clicks%3A%20Analytics%20and%20eMarketing%20Strategies%20%C2%BB%20MailChimp%20Review%3A%20Email%20Marketing%20Provider &#8211; Name of the site and Page title</li>
</ul>
<ul>
<li>&amp;utmr=-</li>
<li>&amp;utmp=/download/emailWhitepaper.pdf &#8211; tracks downloads as virtual pageviews</li>
</ul>
<ul>
<li>&amp;utmhid=1822260590 &#8211; unique id to track this user in Google Analytics</li>
<li>&amp;utmr=0</li>
<li>&amp;utmp=/2009/04/06/email-marketing/mailchimp-review-email-marketing-provider/</li>
<li>&amp;utmac=UA-475241-7 &#8211; The Google analytics code associated with your account</li>
<li>&amp;utmcc=__utma%3D144287458.1535030466.1246519340.1246519340.1246519340.1%3B%2B__utmz%3D144287458.1246519342.1.1.utmcsr%3D(direct)%7Cutmccn%3D(direct)%7Cutmcmd%3D(none)%3B &#8211; This last bit is information about the cookies that have been set. You can see that UTMZ is responsible for seting the campaign information about the source of the traffic.</li>
</ul>
<p>I couldn&#8217;t identify all of the variables it was collecting so if you happen to know any of them send me a note via twitter<a href="http://www.twitter.com/larystucker">@LaryStucker</a> so that i can update this page.</li>
</ol>
<p>As you can see in this example, it is easy to use web Proxy debuggers to determine if Google Analytics is being executed properly and if Google&#8217;s servers are receiving the proper information.</p>
<p>If you found this information helpful, have questions or want to mention one of the other HTTP proxy degugging solutions please leave a comment or message on twitter <a href="http://www.twitter.com/larystucker">@LaryStucker</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.freshclicks.net/web-analytics/did-you-just-break-your-google-analytics-installation/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Which companies are visiting your website?</title>
		<link>http://www.freshclicks.net/web-analytics/which-companies-are-visiting-your-website/</link>
		<comments>http://www.freshclicks.net/web-analytics/which-companies-are-visiting-your-website/#comments</comments>
		<pubDate>Mon, 12 Jan 2009 17:15:28 +0000</pubDate>
		<dc:creator>Lary Stucker</dc:creator>
				<category><![CDATA[Web Analytics]]></category>
		<category><![CDATA[analytics]]></category>
		<category><![CDATA[corporate tracking]]></category>
		<category><![CDATA[IP tracking]]></category>
		<category><![CDATA[Network Location]]></category>

		<guid isPermaLink="false">http://www.freshclicks.net/?p=203</guid>
		<description><![CDATA[If you have a website, you are more than likely quite interested in who is visiting that site. If you have a sales team, they are probably even more interested in which companies are visiting. It can help determine a prospects level of interest, whether they have responded to marketing collateral, and which products or [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.freshclicks.net/wp-content/images/2008/12/who.gif"><img class="alignright size-full wp-image-208" title="who is visiting your website?" src="http://www.freshclicks.net/wp-content/images/2008/12/who.gif" alt="who is visiting your website?" width="150" height="120" /></a>If you have a website, you are more than likely quite interested in who is visiting that site. If you have a sales team, they are probably even more interested in which companies are visiting. It can help determine a prospects level of interest, whether they have responded to marketing collateral, and which products or services they are most interested in.</p>
<h3>Problem</h3>
<p>Unless you can get your visitors to identify themselves (fill out a form, sign up for a service, etc.), their visit is going to go completely undetected; however, it doesn&#8217;t have to.<span id="more-203"></span></p>
<h3>Solution</h3>
<p>Within <a href="http://www.google.com/analytics/">Google Analytics</a>, there is a report called &#8220;Network Location&#8221;. ¬† It reports on which internet service providers your visitors are using. ¬†This report allows you to track the internet service provider (ISP) domains to which the user resolves. The domain is determined by the internet service that owns the user&#8217;s internet protocol (IP) identifier. At first this doesn&#8217;t sound like it will be of much use in determining which companies are visiting your website except for the fact that most businesses own their IP address.¬† So, what you see in this report is both generic ISP traffic (AT&amp;T networks, Verizon internet services inc., road runner holdco llc, etc.) along with schools, businesses, and government agencies.</p>
<p>If you¬†using Google Analytics¬†then you already have &#8220;Network Location&#8221; reports, but like most reports you should probably create an automated processes for reviewing the results.</p>
<h3>Setting up daily Network Location reports</h3>
<p>When it comes to tracking corporate activity on your website, you should try to look at the results on a daily basis.¬† Knowing Apple came to your website a month ago isn&#8217;t going to do anything to help your sales team today.</p>
<ol>
<li><img class="alignright size-full wp-image-216" title="visitdropdown" src="http://www.freshclicks.net/wp-content/images/2008/12/visitdropdown2.gif" alt="visitdropdown" width="232" height="254" />Log into your Google Analytics</li>
<li>Click on the¬†<img class="alignnone size-full wp-image-210" title="visitors" src="http://www.freshclicks.net/wp-content/images/2008/12/visitors.gif" alt="visitors" width="74" height="18" /> button</li>
<li>Click on Network Properties and then on the Network Location link.</li>
<li>Change the date range to yesterday only and click &#8220;apply&#8221;.</li>
<li>Click the &#8220;Ave. Time on Site&#8221; column so that the results are sorted by the visitors who spent the most time first. (I choose &#8220;Ave. Time on Site&#8221; because it is the easiest to indicate interest level in these kind of reports.)</li>
<li>Click the email icon just above the &#8220;Network Location&#8221; title.</li>
<li>Click the Schedule tab and fill out the information. Make sure to change the Date range to &#8220;Daily(sent each morning)&#8221;¬†and make sure that &#8220;Include date comparison&#8221; is not checked.</li>
<li>Click the &#8220;Schedule&#8221; button and you are done!</li>
</ol>
<p>You will start receiving your daily Network Location reports via your email.</p>
<p>Here is an example excerpt from a Network Location report:</p>
<div id="attachment_223" class="wp-caption alignnone" style="width: 590px"><a href="http://www.freshclicks.net/wp-content/images/2008/12/appleresults.gif"><img class="size-large wp-image-223" title="appleresults" src="http://www.freshclicks.net/wp-content/images/2008/12/appleresults-580x76.gif" alt="Hmmm...why is Apple coming to my website?" width="580" height="76" /></a><p class="wp-caption-text">Hmmm...why is Apple coming to my website?</p></div>
<p>If you found this article helpful, interesting, or you want to add your two cents, please leave a comment below!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.freshclicks.net/web-analytics/which-companies-are-visiting-your-website/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Barack Obama uses Google Analytics</title>
		<link>http://www.freshclicks.net/marketing/barack-obama-uses-google-analytics/</link>
		<comments>http://www.freshclicks.net/marketing/barack-obama-uses-google-analytics/#comments</comments>
		<pubDate>Sun, 21 Dec 2008 18:34:52 +0000</pubDate>
		<dc:creator>Lary Stucker</dc:creator>
				<category><![CDATA[Marketing]]></category>
		<category><![CDATA[Web Analytics]]></category>
		<category><![CDATA[Barack Obama]]></category>
		<category><![CDATA[Google Analytics]]></category>
		<category><![CDATA[Optimizer]]></category>

		<guid isPermaLink="false">http://www.freshclicks.net/?p=151</guid>
		<description><![CDATA[As someone who is intrinsically interested in pulling back the curtain and seeing what&#8217;s going on behind the scene, I was somewhat surprised by what I found while looking through the source code of the president elect&#8217;s web site www.barackobama.com. It seems that his campaign is making great use of Google Analytics and Google Web [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.freshclicks.net/wp-content/images/2008/12/obamaanalytics.gif"><img class="alignright size-medium wp-image-196" title="obama analytics" src="http://www.freshclicks.net/wp-content/images/2008/12/obamaanalytics-213x300.gif" alt="obama analytics" width="213" height="300" /></a>As someone who is intrinsically interested in pulling back the curtain and seeing what&#8217;s going on behind the scene, I was somewhat surprised by what I found while looking through the source code of the president elect&#8217;s web site <a href="http://www.barackobama.com?utm_source=Lary%2BStucker&amp;utm_medium=freshclicks.net&amp;utm_campaign=Marketing%2BGenius">www.barackobama.com</a>. It seems that his campaign is making great use of <a href="www.google.com/analytics/">Google Analytics</a> and <a href="http://www.google.com/websiteoptimizer">Google Web Optimizer</a>.</p>
<p>You can see areas where they have changed code and stopped web site functions in order to improve website¬†retension:</p>
<blockquote><p>/* Commenting out to try to fix exit and bounce rates in Google Analytics */</p></blockquote>
<p>What I find most encouraging is that our new president seems to have surrounded himself with smart people.¬† Including people who know how to leverage technology like Google&#8217;s Website Optimizer and Analytics¬†to¬†improve their campaign, while at the same time keeping down their overhead.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.freshclicks.net/marketing/barack-obama-uses-google-analytics/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Getting Started with Web Analytics</title>
		<link>http://www.freshclicks.net/web-analytics/getting-started-with-web-analytics/</link>
		<comments>http://www.freshclicks.net/web-analytics/getting-started-with-web-analytics/#comments</comments>
		<pubDate>Wed, 03 Dec 2008 00:54:35 +0000</pubDate>
		<dc:creator>Lary Stucker</dc:creator>
				<category><![CDATA[Web Analytics]]></category>
		<category><![CDATA[begining analytics]]></category>
		<category><![CDATA[what web stats to measure]]></category>

		<guid isPermaLink="false">http://www.freshclicks.net/?p=136</guid>
		<description><![CDATA[The decision to start measuring your website&#8217;s traffic can occur for many reasons. You may be the owner of a small business, or you may be a seasoned marketer who is just now getting into eMarketing (does anyone like that still exist?). Either way, you know that your web site&#8217;s statistics contain valuable information, but [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.freshclicks.net/wp-content/images/2008/12/metrics.gif"><img class="size-thumbnail wp-image-146" title="web metrics" src="http://www.freshclicks.net/wp-content/images/2008/12/metrics-150x150.gif" alt="What metrics to measure?" width="150" height="150" align="right" /></a>The decision to start measuring your website&#8217;s traffic can occur for many reasons. You may be the owner of a small business, or you may be a seasoned marketer who is just now getting into eMarketing (does anyone like that still exist?).  Either way, you know that your web site&#8217;s statistics contain valuable information, but you don&#8217;t know what that information is or what you can do with it.  The purpose of this article is to give you an overview of what web analytics can do and which metrics you should start tracking right away.</p>
<h3>What Web Metrics should you start measuring today and why?</h3>
<ul>
<li><strong>Visitors:</strong> What is the average number of visits to your website?</li>
<li><strong>Conversions:</strong> Conversion can mean many different things depending on your business. A Free trial download,  the sale of a product, and the completion of a contact form are all types of conversions that have value to your business.<span id="more-136"></span> You should know the average number of conversions and the number of conversions per visitor to your site.<br />
FORMULA: # of Conversions/ # of Visitors = Conversion rate%</li>
<li><strong>Most popular pages on your site:</strong> What content on your website is attracting the most views?  How has this changed over time?  I have recently seen a secondary product&#8217;s landing page surpass a company&#8217;s flagship product in popularity well before the Executives finally realized that the market has changed and they should change their marketing focus.</li>
<li><strong>Top referring sites/mediums:</strong> How are visitors coming to your website?  Which search engines, forums, articles, paid ads, or email are driving visits and conversions to your site?</li>
<li><strong>Top keywords: </strong>What keywords are visitors using to find your site? What keywords do visitors use that convert into sales/ leads/ contacts?  What keywords don&#8217;t you see?  Sometimes the most telling keywords are the ones that you don&#8217;t see. If you sell air filters for Chevy trucks and you have zero visits to your site for the Keywords &#8220;Chevy air filters&#8221;, you have some serious Keywords and Pay-Per-Click optimization to do!<strong><br />
</strong></li>
<li><strong>Average visit time and average number of pages per visit </strong>(this is also known as engagement): When someone arrives at your website, how engaging is the content?  Do they stick around and visit multiple pages?  This can vary greatly by referrer and keywords visitors use to arrive at the site as well, so make sure that you keep a close eye on your primary keywords and referrers. Also keep an eye out for new sources of traffic that have a higher engagement level than your site average.<strong><br />
</strong></li>
<li><strong>Bounce rate:</strong> The opposite of engagement &#8211; this is a measurement of the visitors that left the site as soon as the page loaded. This is going to happen, so don&#8217;t get to discouraged by the numbers. Depending on your industry your bounce rate should stay under 50%.  Anything higher than that may mean that your site is either optimized for the wrong keywords or you are targeting the wrong markets.</li>
<li><strong>Geographic and language settings:</strong> Where in the world is all of this traffic coming from? Of course, if your product or industry has international appeal you would want to know which countries and what languages your visitors speak, but even local business should be looking at this information.  For example, when we started looking at the traffic from regions where a local contractor actually  serviced, we noticed that 75% of those visitors had their language setting set to Spanish, but the website was only in English.  Obviously, it became a high priority for that contractor to offer a Spanish version of his site.</li>
</ul>
<p>For each of these metrics, you should know if the numbers are increasing or decreasing?  Is this a seasonal trend or is this a part of some other market force?</p>
<h3>How often should you check/ report on your web metrics?</h3>
<p>It can be very addicting to check these metrics constantly and you have to be careful not to spend all of your time poring over the different variables.  So, the question that I am often asked is how often should you check your web metrics? Daily, weekly, monthly?  The typical answer I give is as often as you can take action based on the results.  If you started a new Pay-Per-Click campaign, you probably want to watch the results on a daily basis at first to make sure that it is performing properly.  If you spot any anomalies, you can catch them right away and take corrective actions.</p>
<p>Well, that should be enough to get you started.  If you have any questions or you found this article useful, please leave a comment!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.freshclicks.net/web-analytics/getting-started-with-web-analytics/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Website Performance by Language</title>
		<link>http://www.freshclicks.net/web-analytics/website-performance-by-language/</link>
		<comments>http://www.freshclicks.net/web-analytics/website-performance-by-language/#comments</comments>
		<pubDate>Fri, 20 Jun 2008 07:20:48 +0000</pubDate>
		<dc:creator>Lary Stucker</dc:creator>
				<category><![CDATA[Web Analytics]]></category>
		<category><![CDATA[Google Analytics]]></category>
		<category><![CDATA[internationalization]]></category>
		<category><![CDATA[Key Performance Indicators]]></category>
		<category><![CDATA[web metrics]]></category>

		<guid isPermaLink="false">http://www.freshclicks.net/?p=48</guid>
		<description><![CDATA[How well does your website perform based on the visitor&#8217;s language preferences? Is there a large portion of your traffic that is not being well served because of a language barrier? Do you have multiple language support on your website and want to know if it is effective? Web analytics can answer all of those [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-50" title="hello" src="http://www.freshclicks.net/wp-content/images/2008/06/hello.gif" alt="hello" width="200" height="86" align="right" />How well does your website perform based on the visitor&#8217;s language preferences? Is there a large portion of your traffic that is not being well served because of a language barrier? Do you have multiple language support on your website and want to know if it is effective?</p>
<p>Web analytics can answer all of those questions, and it can show you how effective your marketing efforts are by visitor language.</p>
<p>I will be using Google Analytics, but you can use most analytics tools to easily look at visits and purchases by the language setting of the visitor&#8217;s browsers.<span id="more-48"></span></p>
<p>Click on: Visitors-&gt; Language</p>
<p><a href="http://www.freshclicks.net/wp-content/images/2008/06/internationalization.gif"><img title="internationalization Report" src="http://www.freshclicks.net/wp-content/images/2008/06/internationalization-300x175.gif" alt="internationalization Report" width="300" height="175" /></a><strong> </strong></p>
<p><strong>Gather the following information:</strong></p>
<ul>
<li>Total number of visits to the site</li>
<li>Number of visits by Top 10 languages</li>
<li>Total number of Sales on the site (if you are not running an eCommerce site then you can also look at number of conversions)</li>
<li>Number of sales by those top 10 languages</li>
</ul>
<h3>Quality index Reports:</h3>
<p>Quality index reports are a top level measurement designed to show how well a  particular metric is performing when compared to the site as a whole.</p>
<p>The formula is: Quality index = % Goal Conversions from metric X /  % visits  from metric X</p>
<ul>
<li>1.00 = metric X is equal with site average</li>
<li>&gt;1.00 = metric X is less likely to convert</li>
<li>&lt;1.00 = metric X more likely to convert</li>
</ul>
<p>So for our Internationalization KPI (Key Performance Indicator) we will look at how well each language performed when compared to the website.  Anything over 1.0 means that it performed that much better than the site average.</p>
<p><strong>Quality index by Top Languages</strong></p>
<ul>
<li>English-US: 1.67</li>
<li>Chinese: <strong>0.01</strong></li>
<li>French: 0.74</li>
<li>German: 1.12</li>
<li>Russian: <strong>0.05</strong></li>
<li>Spanish: 0.55</li>
<li>Japanese: 0.70</li>
<li>Taiwanese: 0.12</li>
<li>Portuguese: 0.04</li>
<li>Italian: 0.32</li>
</ul>
<p>One thing we notice right away is that are second largest source of traffic by language (Chinese) is performing terribly.  This also turns out to be a great opportunity for our current situation as well.  Chinese speakers are obviously coming to the site looking for our products but the site isn&#8217;t currently catering to Chinese speakers.  I would put them first on the list of our internationalization project followed by either Russian or French.  French speakers are coming in much higher volumes then the Russians and optimizing their user experience would probably have better results.</p>
<p>This is a great metric to track over time especially when looking for new international markets to enter.</p>
<p>Please let me know if you find these kinds of articles helpful to achieving your web analytic goals.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.freshclicks.net/web-analytics/website-performance-by-language/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

