<?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>网站分析 Web Analytics &#187; Google Analytics</title>
	<atom:link href="http://www.webanalytics.org.cn/tag/google-analytics/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.webanalytics.org.cn</link>
	<description>专注于网站分析工具、网站分析方法与网站分析实践</description>
	<lastBuildDate>Fri, 25 Jun 2010 05:55:20 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>奇怪的Google Analytics报表</title>
		<link>http://www.webanalytics.org.cn/a-strange-google-analytics-report/</link>
		<comments>http://www.webanalytics.org.cn/a-strange-google-analytics-report/#comments</comments>
		<pubDate>Sat, 12 Jun 2010 05:39:12 +0000</pubDate>
		<dc:creator>深蓝</dc:creator>
				<category><![CDATA[疑问求教]]></category>
		<category><![CDATA[Google Analytics]]></category>
		<category><![CDATA[疑问]]></category>

		<guid isPermaLink="false">http://www.webanalytics.org.cn/?p=397</guid>
		<description><![CDATA[在Google Analytics中，针对一次访问，有如下的定义：
访问者的浏览器及特殊网站之间的互动时段，关闭浏览器或关机时结束，或者，在指定的时段内，用户在网站上无活动也会结束会话。
对 Google Analytics（分析）报告而言，如果用户在网站 30 分钟无活动会话则告结束。另外，您也可以使用您的跟踪代码更新此设置。
不过我在Google Analytics的报表中看到，停留时间达到了1小时40分钟。而当前页面的停留时间是浏览后一个页面的时刻减去开始浏览当前页面的时刻。结合前面访问的定义，报表中的停留时间应该不会超过30分钟的，超过以后就算做是另一次访问了。那这个1小时40分钟的数据是如何得到的呢？是我理解错误吗？
无图无真相，上图：

]]></description>
			<content:encoded><![CDATA[<p>在Google Analytics中，针对一次访问，有如下的定义：</p>
<blockquote><p>访问者的浏览器及特殊网站之间的互动时段，关闭浏览器或关机时结束，或者，在指定的时段内，用户在网站上无活动也会结束会话。</p>
<p>对 Google Analytics（分析）报告而言，如果用户在网站 30 分钟无活动会话则告结束。另外，您也可以使用您的跟踪代码<a href="http://www.google.com/support/googleanalytics/bin/answer.py?answer=55463&amp;hl=zh-CN" target="_blank">更新此设置</a>。</p></blockquote>
<p>不过我在Google Analytics的报表中看到，停留时间达到了1小时40分钟。而当前页面的停留时间是浏览后一个页面的时刻减去开始浏览当前页面的时刻。结合前面访问的定义，报表中的停留时间应该不会超过30分钟的，超过以后就算做是另一次访问了。那这个1小时40分钟的数据是如何得到的呢？是我理解错误吗？</p>
<p>无图无真相，上图：</p>
<p><img class="alignnone size-full wp-image-398" title="google analytics report" src="http://www.webanalytics.org.cn/wp-content/uploads/2010/06/google-analytics-report.jpg" alt="google analytics report" width="480" height="172" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.webanalytics.org.cn/a-strange-google-analytics-report/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Google Analytics的另类部署方式</title>
		<link>http://www.webanalytics.org.cn/unconventional-deployment-of-google-analytics-codes/</link>
		<comments>http://www.webanalytics.org.cn/unconventional-deployment-of-google-analytics-codes/#comments</comments>
		<pubDate>Mon, 29 Mar 2010 06:48:00 +0000</pubDate>
		<dc:creator>深蓝</dc:creator>
				<category><![CDATA[分析工具]]></category>
		<category><![CDATA[Google Analytics]]></category>
		<category><![CDATA[原理]]></category>

		<guid isPermaLink="false">http://www.webanalytics.org.cn/?p=363</guid>
		<description><![CDATA[Google Analytics在部署的时候，通常会采用下面的部署的方式：
<em><span style="color: #888888;"> &#60;script type="text/javascript"&#62;
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
&#60;/script&#62;
&#60;script type="text/javascript"&#62;
try {
var pageTracker = _gat._getTracker("UA-8982891-2");
pageTracker._addOrganic("soso","w");
pageTracker._trackPageview("");
} catch(err) {}&#60;/script&#62;</span></em>
这种部署方式在大部分情况当然是最优的选择。不过，有些极端条件下可能就不适用了。比如，手机页面跟踪。目前的手机大部分都不支持JavaScript，所以即使部署了常规的Google Analytics的代码，这些代码也不会被执行，也就不会跟踪到数据了。]]></description>
			<content:encoded><![CDATA[<p>Google Analytics在部署的时候，通常会采用下面的部署的方式：<br />
<em><span style="color: #888888;"> &lt;script type=&#8221;text/javascript&#8221;&gt;<br />
var gaJsHost = ((&#8221;https:&#8221; == document.location.protocol) ? &#8220;https://ssl.&#8221; : &#8220;http://www.&#8221;);<br />
document.write(unescape(&#8221;%3Cscript src=&#8217;&#8221; + gaJsHost + &#8220;google-analytics.com/ga.js&#8217; type=&#8217;text/javascript&#8217;%3E%3C/script%3E&#8221;));<br />
&lt;/script&gt;<br />
&lt;script type=&#8221;text/javascript&#8221;&gt;<br />
try {<br />
var pageTracker = _gat._getTracker(&#8221;UA-8982891-2&#8243;);<br />
pageTracker._addOrganic(&#8221;soso&#8221;,&#8221;w&#8221;);<br />
pageTracker._trackPageview(&#8221;");<br />
} catch(err) {}&lt;/script&gt;</span></em><br />
这种部署方式在大部分情况当然是最优的选择。不过，有些极端条件下可能就不适用了。比如，手机页面跟踪。目前的手机大部分都不支持JavaScript，所以即使部署了常规的Google Analytics的代码，这些代码也不会被执行，也就不会跟踪到数据了。</p>
<p>要解决这个问题，还要从Google Analytics代码的工作原理说起。在之前的一篇文章《<a title="网站分析工具工作原理" href="http://www.webanalytics.org.cn/principle-of-script-web-analytics-tools/" target="_blank">脚本型网站分析工具工作原理</a>》中，有介绍过象Google Analytics这种的在网页中嵌入标签的网站分析工具是如何抓取到用户访问的信息。基本上，Google Analytics会提供一段JavaScript代码，需要按照一定的规范加入到页面上。当页面被浏览器加载的时候，这些JavaScript代码会被执行。这些代码会收集用户访问的信息和浏览器客户端的信息。然后，最关键的，会在HTML中增加一个1×1的图片。这个图片的源地址是Google Analytics的数据服务器，图片地址后面的参数是拼接好的采集到的信息。浏览器自然会去加载这个图片，那么当这条图片加载的请求发出的时候，这些信息也就发到了Google Analytics的数据服务器。至于最后数据服务器返回的一个透明图片的数据，只是为了对用户透明，其实对于数据的采集已经不重要了。</p>
<p>再回到我们刚开始的问题。当有些情况下JavaScript不能被执行，而又希望能够跟踪到用户的访问信息，应该如何做呢？那就需要跳过前面的部分，自己来处理JavaScript处理的内容，拼接那个图片的请求。这个图片的请求应该怎么拼接呢，让我们来看一个例子：<br />
<em><span style="color: #888888;"> &lt;img src=&#8221;http://www.google-analytics.com/__utm.gif?utmwv=4.6.5&amp;utmn=451113762&amp;utmhn=www.webanalytics.org.cn&amp;utmcs=UTF-8&amp;utmsr=1152&#215;864&amp;utmsc=32-bit&amp;utmul=zh-cn&amp;utmje=1&amp;utmfl=10.0%20r22&amp;utmdt=%E7%BD%91%E7%AB%99%E5%88%86%E6%9E%90-%E4%B8%93%E6%B3%A8%E7%BD%91%E7%AB%99%E5%88%86%E6%9E%90%E5%B7%A5%E5%85%B7%E4%B8%8E%E6%8A%80%E6%9C%AF&amp;utmhid=1887594027&amp;utmr=-&amp;utmp=%2F&amp;utmac=UA-8982891-2&amp;utmcc=__utma%3D66084008.1210065981.1255914740.1269832632.1269843904.288%3B%2B__utmz%3D66084008.1268098054.275.37.utmcsr%3Dgoogle%7Cutmccn%3D(organic)%7Cutmcmd%3Dorganic%7Cutmctr%3D%25E7%25BD%2591%25E7%25AB%2599%25E5%2588%2586%25E6%259E%2590%3B%2B__utmv%3D66084008.200%2520-%2520500%2520ms%3B%2B__utmx%3D66084008.00007688461911432602%3A2%3A1%3B&#8221; width=&#8221;1&#8243; height=&#8221;1&#8243; border=&#8221;0&#8243; /&gt;</span></em><br />
哇，这是些什么啊！不要担心，我们一点一点解释。在URL的规范中，问号?以后的部分是参数，每个参数之间用&amp;符号间隔。让我们加上回车，把版面排得好看些。另外再加上注解。<br />
<em><span style="color: #888888;"> /__utm.gif?<br />
utmwv=4.6.5	//跟踪代码版本号<br />
&amp;utmn=93127920  //随机数，防止缓存影响数据准确<br />
&amp;utmhn=www.webanalytics.org.cn	//域名<br />
&amp;utmcs=UTF-8	//编码方式<br />
&amp;utmsr=1152&#215;864	//屏幕分辨率<br />
&amp;utmsc=32-bit	//屏幕颜色深度<br />
&amp;utmul=zh-cn	//语言<br />
&amp;utmje=1	//是否安装Java<br />
&amp;utmfl=10.0%20r22	//Flash版本号<br />
&amp;utmdt=%E7%BD%91%E7%AB%99%E5%88%86%E6%9E%90-%E4%B8%93%E6%B3%A8%E7%BD%91%E7%AB%99%E5%88%86%E6%9E%90%E5%B7%A5%E5%85%B7%E4%B8%8E%E6%8A%89C%AF		//标题，URL中的中文都是经过URL编码处理的<br />
&amp;utmhid=208132060	//随机数<br />
&amp;utmr=-		//Referrer<br />
&amp;utmp=%2F	//页面URL<br />
&amp;utmac=UA-8982891-2	//Google Analytics帐号ID<br />
&amp;utmcc=__utma%3D66084008.1210065981.1255914740.1269481984.1269567813.286%3B%2B__utmz%3D66084008.1268098054.275.37.utmcsr%3Dgoogle%7Cutmccn%3D(organic)%7Cutmcmd%3Dorganic%7Cutmctr%3D%25E7%25BD%2591%25E7%25AB%2599%25E5%2588%2586%25E6%259E%2590%3B%2B__utmv%3D66084008.200%2520-%2520500%2520ms%3B%2B__utmx%3D66084008.00007688461911432602%3A2%3A1%3B	//Cookie中的信息</span></em></p>
<p>好了，都清楚每个变量的用处了吧。当在手机浏览器中，不能使用Cookie和JavaScript的时候，那么我们可以跟踪最简单的页面查看的数据。下面是个例子：<br />
<span style="color: #888888;"><em>&lt;img src=&#8221;http://www.google-analytics.com/__utm.gif?utmwv=4.6.5&amp;utmn=451113822&amp;utmhn=www.webanalytics.org.cn&amp;utmcs=UTF-8&amp;utmdt=abcd&amp;utmhid=1837594037&amp;utmr=-&amp;utmp=%2F123&amp;utmac=UA-8982891-2&#8243; width=&#8221;1&#8243; height=&#8221;1&#8243; border=&#8221;0&#8243; /&gt;</em></span></p>
<p>怎么样，明白了其中的奥妙吧？</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webanalytics.org.cn/unconventional-deployment-of-google-analytics-codes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>网站分析中的多网站跨域跟踪</title>
		<link>http://www.webanalytics.org.cn/cross-domain-tracking-in-web-analytics/</link>
		<comments>http://www.webanalytics.org.cn/cross-domain-tracking-in-web-analytics/#comments</comments>
		<pubDate>Tue, 02 Mar 2010 12:32:22 +0000</pubDate>
		<dc:creator>深蓝</dc:creator>
				<category><![CDATA[分析工具]]></category>
		<category><![CDATA[Cookie]]></category>
		<category><![CDATA[Google Analytics]]></category>
		<category><![CDATA[Omniture]]></category>
		<category><![CDATA[SiteCatalyst]]></category>
		<category><![CDATA[第三方Cookie]]></category>
		<category><![CDATA[跨域名]]></category>

		<guid isPermaLink="false">http://www.webanalytics.org.cn/?p=349</guid>
		<description><![CDATA[不知道你有没有碰到这样的情况，有多个网站需要跟踪和分析，而这些网站在不同的域名之下。对于各个网站本身的分析，这是比较简单的，但对于各个网站之间相互关联的分析，就需要花费一些气力了。想象一下，假设有两个网站，A网站的域名是a.com，B网站的域名是b.com。当一个访问者通过点击广告来到A网站，在A网站中点击链接来到B网站，最后在B网站购买了商品，我们如何才能跟踪到广告点击为最后的购买行为的贡献呢？这种情况很常见，B可以是一个电子商务网站的主站，而A是一个广告登陆的Mini Site。
<h3>这有什么区别？</h3>
有的童鞋可能会说，这有什么难的，只要在两个网站上都部署了网站分析工具的跟踪代码，用相同的帐号或者ID，两个网站的数据不就会整合到一起吗？但实际的情况没有这么简单。

我们访问网站的时候，是通过HTTP协议，而HTTP协议是一种无状态的协议。换句话说，当你访问一个页面的时候，服务器不会记得你是谁，你之前看过些什么页面。为了能够记录一些重要的信息，HTTP中专门定义了Cookie的概念。Cookie可以用来在浏览器中记录一些信息。为了保护隐私，Cookie中的信息是加密存储，并且是属于特定的域名的，只有这个域名才能够读写。

所以，当两个网站下的Cookie都属于各自的 域的时候，也就是都使用第一方Cookie的时候，A网站和B网站虽然都能被监控到，但他们之间是没有关联的。因为A网站和B网站会分别有两个Cookie，而这两个Cookie存储的用户的ID也是不同的。]]></description>
			<content:encoded><![CDATA[<p>不知道你有没有碰到这样的情况，有多个网站需要跟踪和分析，而这些网站在不同的域名之下。对于各个网站本身的分析，这是比较简单的，但对于各个网站之间相互关联的分析，就需要花费一些气力了。想象一下，假设有两个网站，A网站的域名是a.com，B网站的域名是b.com。当一个访问者通过点击广告来到A网站，在A网站中点击链接来到B网站，最后在B网站购买了商品，我们如何才能跟踪到广告点击为最后的购买行为的贡献呢？这种情况很常见，B可以是一个电子商务网站的主站，而A是一个广告登陆的Mini Site。</p>
<h3>这有什么区别？</h3>
<p>有的童鞋可能会说，这有什么难的，只要在两个网站上都部署了网站分析工具的跟踪代码，用相同的帐号或者ID，两个网站的数据不就会整合到一起吗？但实际的情况没有这么简单。</p>
<p>我们访问网站的时候，是通过HTTP协议，而HTTP协议是一种无状态的协议。换句话说，当你访问一个页面的时候，服务器不会记得你是谁，你之前看过些什么页面。为了能够记录一些重要的信息，HTTP中专门定义了Cookie的概念。Cookie可以用来在浏览器中记录一些信息。为了保护隐私，Cookie中的信息是加密存储，并且是属于特定的域名的，只有这个域名才能够读写。</p>
<p>所以，当两个网站下的Cookie都属于各自的 域的时候，也就是都使用第一方Cookie的时候，A网站和B网站虽然都能被监控到，但他们之间是没有关联的。因为A网站和B网站会分别有两个Cookie，而这两个Cookie存储的用户的ID也是不同的。</p>
<h3>这样会有什么问题？</h3>
<p>首先，同一个访问者在两个网站上产生的行为无法产生关联，就像文章开头那里的例子，我们无法知道链接到A网站的广告对最后B网站上的购买贡献有多大。这对很多两个关联很紧密的网站的分析来说是致命的。其次，网站分析工具的测量结果将不正确。因为不同的域名各有一个Cookie，网站分析工具会在这两个Cookie中存储分配的两个不相同的用户ID，当一个用户在一次访问中浏览了两个网站，则会产生两次Visits和两个Visitors。</p>
<h3>那网站分析到底如何进行跨域名的跟踪呢？</h3>
<p><strong>关于这个问题，有趣得紧，网站分析工具中大名鼎鼎的两个，Omniture的SiteCatalyst和Google Analytics，分别给出了两个不同的答案。</strong>让我们看看他们分别是如何工作的吧。</p>
<h4>先说说Omniture的SiteCatalyst的解决方案</h4>
<p>SiteCatalyst默认情况下使用的是第三方的Cookie，Cookie的域是Omniture数据接收服务器的域名。也就是说，不管你把SiteCatalyst装到多少个网站上，使用的Cookie的域都是同一个，不会发生变化。这就保证了，在不同网站上使用同一个Cookie。SiteCatalyst就能够知道不同网站上的访问是否来自同一个访问者。</p>
<p>不过SiteCatalyst使用的第三方Cookie的接受率相对第一方Cookie略低，准确度会有影响。所幸国内网民对隐私的保护并不重视，两种Cookie的接受率差异很小。</p>
<h4>再来看看Google Analytics是如何解决的</h4>
<p>Google Analytics是使用第一方Cookie的，Cookie的域都是被监控的网站的域名，所以各个域名之间是无法关联的。针对跨域跟踪的这种情况，Google Analytics提供了一组函数。在部署的时候，所有遇到域名之间跳转的情况，不管是链接、表单提交还是框架等，都需要加入特定的代码。可以参考<a title="Google Analytics的跨域跟踪的官方文档" href="http://code.google.com/intl/zh-CN/apis/analytics/docs/tracking/gaTrackingSite.html" target="_blank">Google Analytics的官方文档</a>。那么它的工作原理是什么样的呢？当我们第一次访问网站A的时候，这个网站上部署的Google Analytics的代码会在保存一些Cookie，记录包括在Google Analytics中唯一标识这个用户的ID在内的信息。当点击一个链接到网站B的时候，在链接上的特定代码会做一个处理，将网站A中的Google Analytics的Cookie的指都取出来，作为参数传递链接的目标页面。目标页面上的Google Analytics的代码会把这些值放置到自己Cookie中。这样以来，即使两个域名还是使用两个Cookie，但Cookie中的信息是一致的，Google Analytics还是可以认定跨越两个域名的访问是否来至同一个访问者。</p>
<p>Google Analytics的优点在于使用第一方Cookie所带来的更高的接受率。缺点也显而易见，因为需要在所有网站间跳转的地方增加额外的代码，增加了部署和维护的难度和成本。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webanalytics.org.cn/cross-domain-tracking-in-web-analytics/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Google Analytics自定义报告使用详解</title>
		<link>http://www.webanalytics.org.cn/google-analytics-custom-reporting/</link>
		<comments>http://www.webanalytics.org.cn/google-analytics-custom-reporting/#comments</comments>
		<pubDate>Fri, 05 Feb 2010 06:23:00 +0000</pubDate>
		<dc:creator>深蓝</dc:creator>
				<category><![CDATA[分析工具]]></category>
		<category><![CDATA[Google Analytics]]></category>
		<category><![CDATA[自定义]]></category>
		<category><![CDATA[自定义报告]]></category>

		<guid isPermaLink="false">http://www.webanalytics.org.cn/?p=341</guid>
		<description><![CDATA[Google Analytics去年推出了很多新的功能，我已经写过关于<a title="自定义变量" href="http://www.webanalytics.org.cn/google-analytics-custom-variables-in-practice/" target="_blank">自定义变量</a>、<a title="智能报警" href="http://www.webanalytics.org.cn/google-analytics-intelligence-and-alert/" target="_blank">智能报警</a>、<a title="高级分割" href="http://www.webanalytics.org.cn/using-advanced-segments-of-google-analytics/" target="_blank">高级分割</a>等等，今个让我们看看Google Analytics的自定义报告，能够带给我们什么。
<h3>得到默认报告中木有的数据</h3>
Google Analytics默认有不少报告，已经可以满足我们的大部分需要了。不过这些报告的量度都是Google设定好的，不能再做更改了。那如果我需要的报告超过了这个范围该怎么办呢，那就需要自定义报告来帮忙了。比如，在默认的页面的报表中，我们只能看到下面的数据。

<img class="alignnone size-full wp-image-342" title="页面报表" src="http://www.webanalytics.org.cn/wp-content/uploads/2010/02/页面报表.jpg" alt="页面报表" width="480" height="286" />]]></description>
			<content:encoded><![CDATA[<p>Google Analytics去年推出了很多新的功能，我已经写过关于<a title="自定义变量" href="http://www.webanalytics.org.cn/google-analytics-custom-variables-in-practice/" target="_blank">自定义变量</a>、<a title="智能报警" href="http://www.webanalytics.org.cn/google-analytics-intelligence-and-alert/" target="_blank">智能报警</a>、<a title="高级分割" href="http://www.webanalytics.org.cn/using-advanced-segments-of-google-analytics/" target="_blank">高级分割</a>等等，今个让我们看看Google Analytics的自定义报告，能够带给我们什么。</p>
<h3>得到默认报告中木有的数据</h3>
<p>Google Analytics默认有不少报告，已经可以满足我们的大部分需要了。不过这些报告的量度都是Google设定好的，不能再做更改了。那如果我需要的报告超过了这个范围该怎么办呢，那就需要自定义报告来帮忙了。比如，在默认的页面的报表中，我们只能看到下面的数据。</p>
<p><img class="alignnone size-full wp-image-342" title="页面报表" src="http://www.webanalytics.org.cn/wp-content/uploads/2010/02/页面报表.jpg" alt="页面报表" width="480" height="286" /></p>
<p>如果希望有更多的数据，就需要借助自定义报告了。在自定义报告的生成界面，只要方便的拖拽维度和量度。</p>
<p><img class="alignnone size-full wp-image-346" title="自定义页面报告生成界面" src="http://www.webanalytics.org.cn/wp-content/uploads/2010/02/自定义页面报告生成界面.jpg" alt="自定义页面报告生成界面" width="480" height="137" /></p>
<p>然后就能够得到下面的需要的报告了。</p>
<p><img class="alignnone size-full wp-image-343" title="自定义页面报告" src="http://www.webanalytics.org.cn/wp-content/uploads/2010/02/自定义页面报告.jpg" alt="自定义页面报告" width="480" height="299" /></p>
<h3>定制需要的报表</h3>
<p>默认的报表，量度已经固定，不能再调整。如果需要一些特殊的报告，也可以借助自定义报告的功能。建立一系列需要的独特的报告，下次使用的时候，也可以方便的找回。</p>
<p><img class="alignnone size-full wp-image-345" title="自定义报告列表" src="http://www.webanalytics.org.cn/wp-content/uploads/2010/02/自定义报告列表.jpg" alt="自定义报告列表" width="480" height="262" /></p>
<h3>深度的数据挖掘</h3>
<p>有些时候，我们需要再现有的报告上，在细化的分析一些条件或者维度。高级分割能够帮我们分割数据，自定义报告也可以帮我们做这样的事情。只要在报告中多增加一些维度，那么我们可以一直点击项目，查看到多层的维度的数据。</p>
<p><img class="alignnone size-full wp-image-347" title="自定义报告多维度" src="http://www.webanalytics.org.cn/wp-content/uploads/2010/02/自定义报告多维度.jpg" alt="自定义报告多维度" width="480" height="294" /></p>
<p>在这个例子中，可以知道下午3点到4点从Google过来的是第三次访问的用户访问页面A的情况。</p>
<p>好了，你也应该去试试了。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webanalytics.org.cn/google-analytics-custom-reporting/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>使用Google Website Optimizer做A/B测试</title>
		<link>http://www.webanalytics.org.cn/ab-testing-via-google-website-optimizer/</link>
		<comments>http://www.webanalytics.org.cn/ab-testing-via-google-website-optimizer/#comments</comments>
		<pubDate>Thu, 14 Jan 2010 06:52:40 +0000</pubDate>
		<dc:creator>深蓝</dc:creator>
				<category><![CDATA[分析工具]]></category>
		<category><![CDATA[A/B测试]]></category>
		<category><![CDATA[Google Analytics]]></category>
		<category><![CDATA[Google Website Optimizer]]></category>
		<category><![CDATA[自定义]]></category>

		<guid isPermaLink="false">http://www.webanalytics.org.cn/?p=323</guid>
		<description><![CDATA[在<a title="网站分析的步骤" href="http://www.webanalytics.org.cn/steps-of-web-analytics/" target="_blank">以前的文章</a>中提到，在网站分析的过程中，我们通过数据分析出结果，往往提出改进的建议，需要有新的创意，如果没有行动，之前所做的一切都没有意义。这里可能会有各种建议：调整页面头部的布局，修改导航，增加一些元素，调整文字的排版等等。那么这些建议，是不是真的能够提升网站呢？这就需要测试。也许你会说，这好办，把这些调整做好，观察一段时间，把两个时间段上网站的监控数据进行比较。不过，随着时间的推移，各种条件也在发生变化，会影响最终的结果。比如，广告的发布，促销活动，淡季旺季的影响等等。所以，一个更好的办法是，在同一时间展示不同版本的页面给不同的用户，通过不同版本的后续转化来评定优劣。而Google Website Optimizer就是做这样测试的不错的选择。

比如我的<a title="网站分析博客" href="http://www.webanalytics.org.cn" target="_blank">这个博客</a>，Page Views/Visits只有2，也就是说，一次访问访问者平均就浏览两个页面，而且略微还有减少的趋势。这说明网站的粘性有问题。通过分析，我认为网站的导航不是很好，很多文章被埋在几页以后，访问者很难找到。我准备在首页的右下角增加一个悬浮的窗口，提示访问者，查看<a title="网站分析博客地图" href="http://www.webanalytics.org.cn/sitemap/" target="_blank">网站地图</a>可以看到更多文章。这个改进真的能起作用吗？我需要测试一下。]]></description>
			<content:encoded><![CDATA[<p>在<a title="网站分析的步骤" href="http://www.webanalytics.org.cn/steps-of-web-analytics/" target="_blank">以前的文章</a>中提到，在网站分析的过程中，我们通过数据分析出结果，往往提出改进的建议，需要有新的创意，如果没有行动，之前所做的一切都没有意义。这里可能会有各种建议：调整页面头部的布局，修改导航，增加一些元素，调整文字的排版等等。那么这些建议，是不是真的能够提升网站呢？这就需要测试。也许你会说，这好办，把这些调整做好，观察一段时间，把两个时间段上网站的监控数据进行比较。不过，随着时间的推移，各种条件也在发生变化，会影响最终的结果。比如，广告的发布，促销活动，淡季旺季的影响等等。所以，一个更好的办法是，在同一时间展示不同版本的页面给不同的用户，通过不同版本的后续转化来评定优劣。而Google Website Optimizer就是做这样测试的不错的选择。</p>
<p>比如我的<a title="网站分析博客" href="http://www.webanalytics.org.cn" target="_blank">这个博客</a>，Page Views/Visits只有2，也就是说，一次访问访问者平均就浏览两个页面，而且略微还有减少的趋势。这说明网站的粘性有问题。通过分析，我认为网站的导航不是很好，很多文章被埋在几页以后，访问者很难找到。我准备在首页的右下角增加一个悬浮的窗口，提示访问者，查看<a title="网站分析博客地图" href="http://www.webanalytics.org.cn/sitemap/" target="_blank">网站地图</a>可以看到更多文章。这个改进真的能起作用吗？我需要测试一下。</p>
<p>现在我准备了一个新的页面，其实就是原来页面的基础上，增加了网站地图的点击提示。下面就登录到Google Website Optimizer。</p>
<p><img class="alignnone size-full wp-image-325" title="website optimizer step1" src="http://www.webanalytics.org.cn/wp-content/uploads/2010/01/website-optimizer-step1.jpg" alt="website optimizer step1" width="480" height="135" /></p>
<p>因为是新的帐号，现在还没有建立任何的测试。点击“Create a new experiment”。</p>
<p><img class="alignnone size-full wp-image-326" title="website optimizer step2" src="http://www.webanalytics.org.cn/wp-content/uploads/2010/01/website-optimizer-step2.jpg" alt="website optimizer step2" width="480" height="285" /></p>
<p>接下来，需要确定是做A/B测试还是多变量测试。本文主要讨论A/B测试。然后，Google Website Optimizer会提示你需要准备的内容。再点击下一步，会进入一个表单页。</p>
<p><img class="alignnone size-full wp-image-327" title="website optimizer step3" src="http://www.webanalytics.org.cn/wp-content/uploads/2010/01/website-optimizer-step3.jpg" alt="website optimizer step3" width="480" height="439" /></p>
<p>可以看到，会要求输入不同版本的页面的URL。这里是两个版本：原版本和新版本。当然，你也可以创建多个版本，只要点击“Add another page variation”就可以了。在设定好目标页的URL。我这里设置的是留言页面。这样的话，Google Website Optimizer就会按照到达留言页面的次数来衡量两个版本。</p>
<p>进入下一页，选择“You will install and validate the JavaScript tags”。那么，就会看到各个页面应该添加的代码。这里也没有什么好说的，Google都帮你准备好了。按照要求添加好。验证通过后，就可以开始测试了。</p>
<p>好了，现在开始两个版本的页面会被随机的对访问者展示，然后统计最后到达留言页面的情况，然后根据统计学的算法选出优胜者。</p>
<p>有人会问，你之前不是说想提高Page Views/Visits吗，这会儿怎么以访问留言页面为目标了呢？因为在Google Website Optimizer中，目标只能制定某个页面。其实要解决这个问题并不难，只要把Google Website Optimizer和Google Analytics结合起来使用。还记得前面的关于<a title="Google Analytics自定义变量的实际运用" href="http://www.webanalytics.org.cn/google-analytics-custom-variables-in-practice/" target="_blank">Google Analytics自定义变量</a>的文章吗？只要设置一个自定义变量来记录用户访问了哪个版本的页面，那用户后续的情况就都可以了解了。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webanalytics.org.cn/ab-testing-via-google-website-optimizer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Analytics自定义变量的实际运用</title>
		<link>http://www.webanalytics.org.cn/google-analytics-custom-variables-in-practice/</link>
		<comments>http://www.webanalytics.org.cn/google-analytics-custom-variables-in-practice/#comments</comments>
		<pubDate>Fri, 08 Jan 2010 07:21:10 +0000</pubDate>
		<dc:creator>深蓝</dc:creator>
				<category><![CDATA[分析工具]]></category>
		<category><![CDATA[Google Analytics]]></category>
		<category><![CDATA[实际运用]]></category>
		<category><![CDATA[自定义]]></category>

		<guid isPermaLink="false">http://www.webanalytics.org.cn/?p=319</guid>
		<description><![CDATA[自定义变量（Custom Variables）是Google Analytics不久前发布的，我在前文《<a title="Google Analytics自定义变量" href="http://www.webanalytics.org.cn/google-analytics-custom-variables-overview/" target="_blank">Google Analytics自定义变量概貌</a>》中有谈到自定义变量的作用和如何实现。我在<a title="网站分析" href="http://www.webanalytics.org.cn" target="_blank">这个网站</a>上做了测试，下面总结一下部署和使用的情况。
<h3>需要解决的问题</h3>
因为网站是博客，所以主要想特别跟踪一下内容页面的情况。默认的Google Analytics的代码是跟踪的页面的URL，而我的URL太长，不容易看清楚，所以希望跟踪文章的中文标题，打算使用一个自定义变量来记录。另一方面，希望了解访问者在首页、文章页和其他页面的访问的比例和停留的时间等，那会用另一个变量来记录页面的类型。
<h3>页面上的代码</h3>
按照Google Analytics代码的语法，根据前面的需求，我在不同的页面加入了代码......]]></description>
			<content:encoded><![CDATA[<p>自定义变量（Custom Variables）是Google Analytics不久前发布的，我在前文《<a title="Google Analytics自定义变量" href="http://www.webanalytics.org.cn/google-analytics-custom-variables-overview/" target="_blank">Google Analytics自定义变量概貌</a>》中有谈到自定义变量的作用和如何实现。我在<a title="网站分析" href="http://www.webanalytics.org.cn" target="_blank">这个网站</a>上做了测试，下面总结一下部署和使用的情况。</p>
<h3>需要解决的问题</h3>
<p>因为网站是博客，所以主要想特别跟踪一下内容页面的情况。默认的Google Analytics的代码是跟踪的页面的URL，而我的URL太长，不容易看清楚，所以希望跟踪文章的中文标题，打算使用一个自定义变量来记录。另一方面，希望了解访问者在首页、文章页和其他页面的访问的比例和停留的时间等，那会用另一个变量来记录页面的类型。</p>
<h3>页面上的代码</h3>
<p>按照Google Analytics代码的语法，根据前面的需求，我在不同的页面加入了代码。</p>
<p>首页的：</p>
<p><span style="color: #888888;"><em>&lt;script type=&#8221;text/javascript&#8221;&gt;<br />
var gaJsHost = ((&#8221;https:&#8221; == document.location.protocol) ? &#8220;https://ssl.&#8221; : &#8220;http://www.&#8221;);<br />
document.write(unescape(&#8221;%3Cscript src=&#8217;&#8221; + gaJsHost + &#8220;google-analytics.com/ga.js&#8217; type=&#8217;text/javascript&#8217;%3E%3C/script%3E&#8221;));<br />
&lt;/script&gt;<br />
&lt;script type=&#8221;text/javascript&#8221;&gt;<br />
try {<br />
var pageTracker = _gat._getTracker(&#8221;UA-8982891-2&#8243;);<br />
<span style="color: #ff6600;">pageTracker._setCustomVar(1, &#8220;Page-Name&#8221;, &#8220;Home Page&#8221;, 3);<br />
pageTracker._setCustomVar(2, &#8220;Page-Type&#8221;, &#8220;Home&#8221;, 3);</span><br />
pageTracker._trackPageview(&#8221;");<br />
} catch(err) {}&lt;/script&gt;</em></span></p>
<p>文章页：</p>
<p><span style="color: #888888;"><em>&lt;script type=&#8221;text/javascript&#8221;&gt;<br />
var gaJsHost = ((&#8221;https:&#8221; == document.location.protocol) ? &#8220;https://ssl.&#8221; : &#8220;http://www.&#8221;);<br />
document.write(unescape(&#8221;%3Cscript src=&#8217;&#8221; + gaJsHost + &#8220;google-analytics.com/ga.js&#8217; type=&#8217;text/javascript&#8217;%3E%3C/script%3E&#8221;));<br />
&lt;/script&gt;<br />
&lt;script type=&#8221;text/javascript&#8221;&gt;<br />
try {<br />
var pageTracker = _gat._getTracker(&#8221;UA-8982891-2&#8243;);<br />
<span style="color: #ff6600;">pageTracker._setCustomVar(1, &#8220;Page-Name&#8221;, &#8220;Post &gt;&gt;网站分析的作用&#8221;, 3);<br />
pageTracker._setCustomVar(2, &#8220;Page-Type&#8221;, &#8220;Post&#8221;, 3);</span><br />
pageTracker._trackPageview(&#8221;");<br />
} catch(err) {}&lt;/script&gt;</em></span></p>
<p>等等&#8230;&#8230;具体的语法可以参考<a title="Google Analytics自定义变量" href="http://www.webanalytics.org.cn/google-analytics-custom-variables-overview/" target="_blank">前文</a>。</p>
<h3>Google Analytics的报表</h3>
<p><img class="alignnone size-full wp-image-320" title="Google Analytics自定义变量报告" src="http://www.webanalytics.org.cn/wp-content/uploads/2010/01/Google-Analytics自定义变量报告.jpg" alt="Google Analytics自定义变量报告" width="480" height="166" /></p>
<p>这里列出的是所有的变量名称，点击其中一个名称，比如“Page-Type”，可以看到该名称变量的值。</p>
<p><img class="alignnone size-full wp-image-321" title="Google Analytics自定义变量值的报告" src="http://www.webanalytics.org.cn/wp-content/uploads/2010/01/Google-Analytics自定义变量值的报告.jpg" alt="Google Analytics自定义变量值的报告" width="480" height="188" /></p>
<p>通过这个报告，就可以知道，首页、文章页、404页和其他页面分别被访问的情况。</p>
<h3>Google Analytics自定义变量有待改进之处</h3>
<ol>
<li>报告的延时比较大，6号的数据要到8号才能看到</li>
<li>不对URL的编码进行解码处理，当有多字节字符时，看到的报告URL编码后的数据</li>
<li>超过长度时选择了丢弃数据而不是截断，一些页面上通过程序动态的赋值的时候，特别是含有多字节字符时，需要计算长度不能超过64字节，其实Google Analytics在接收到数据再从64字节处截断对用户来说比较方便。</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.webanalytics.org.cn/google-analytics-custom-variables-in-practice/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>网友提问：出站链接的跟踪</title>
		<link>http://www.webanalytics.org.cn/a-question-of-tracking-exit-links/</link>
		<comments>http://www.webanalytics.org.cn/a-question-of-tracking-exit-links/#comments</comments>
		<pubDate>Thu, 07 Jan 2010 07:08:43 +0000</pubDate>
		<dc:creator>深蓝</dc:creator>
				<category><![CDATA[分析工具]]></category>
		<category><![CDATA[Goals]]></category>
		<category><![CDATA[Google Analytics]]></category>
		<category><![CDATA[交流切磋]]></category>
		<category><![CDATA[出站链接]]></category>

		<guid isPermaLink="false">http://www.webanalytics.org.cn/?p=315</guid>
		<description><![CDATA[<a title="freesea童鞋的博客" href="http://www.tofreesea.com" target="_blank">freesea</a>在<a title="我的留言板" href="http://www.webanalytics.org.cn/guestbook/" target="_blank">留言板</a>中问到关于<a title="网站分析工具Google Analytics" href="http://www.google.com/analytics" target="_blank">Google Analytic</a>的问题：
<blockquote>我在我的网站google analytics中设置了一个目标，想知道某外部链接的点击数， 因为那个外部链接是我的另一个网站，两边的统计数据却不吻合，请问知道原因吗？或者google analytics不加额外代码就不知道出站链接？</blockquote>
很好的问题，我想freesea童鞋的需求就是需要跟踪出站链接的点击次数。出站链接，特别是链接到合作网站的链接的跟踪还是很常见的需求。下面就掰一掰跟踪出站链接应该如果做，以及注意的事项。
<h3>如何跟踪出站链接？</h3>
在Google Analytics的报表中，是没有“出站链接”这样一个报表的。我们需要做的是，在链接的HTML代码中加入onclick方法，onclick方法中执行Google Analytics的_trackPageview()，这个方法会将链接被点击的数据作为一次页面的查看记录发送到Google Analytics的服务器。那么，我们就能在Content的报表里看到这个链接被点击的情况了。下面是Google Analytics官方文档的例子：

<em><span style="color: #808080;">&#60;a href="http://www.example.com" onClick="javascript: pageTracker._trackPageview('/outgoing/example.com');"&#62;</span></em>

<span style="color: #000000;">一般的，_trackPageview()方法的参数是为空的，只是Google Analytics会取得页面的URL作为默认值。跟踪外部链接时需要一个虚拟的URL，比如上面例子中是/outgoing/example.com，这个URL在网站中并不存在，但是在Google Analytics的报告中会作为这个外部链接的表示。在报告中看到这个URL的PageViews的次数，就是这个链接被点击的次数了。</span>]]></description>
			<content:encoded><![CDATA[<p><a title="freesea童鞋的博客" href="http://www.tofreesea.com" target="_blank">freesea</a>在<a title="我的留言板" href="http://www.webanalytics.org.cn/guestbook/" target="_blank">留言板</a>中问到关于<a title="网站分析工具Google Analytics" href="http://www.google.com/analytics" target="_blank">Google Analytic</a>的问题：</p>
<blockquote><p>我在我的网站google analytics中设置了一个目标，想知道某外部链接的点击数， 因为那个外部链接是我的另一个网站，两边的统计数据却不吻合，请问知道原因吗？或者google analytics不加额外代码就不知道出站链接？</p></blockquote>
<p>很好的问题，我想freesea童鞋的需求就是需要跟踪出站链接的点击次数。出站链接，特别是链接到合作网站的链接的跟踪还是很常见的需求。下面就掰一掰跟踪出站链接应该如果做，以及注意的事项。</p>
<h3>如何跟踪出站链接？</h3>
<p>在Google Analytics的报表中，是没有“出站链接”这样一个报表的。我们需要做的是，在链接的HTML代码中加入onclick方法，onclick方法中执行Google Analytics的_trackPageview()，这个方法会将链接被点击的数据作为一次页面的查看记录发送到Google Analytics的服务器。那么，我们就能在Content的报表里看到这个链接被点击的情况了。下面是Google Analytics官方文档的例子：</p>
<p><em><span style="color: #808080;">&lt;a href=&#8221;http://www.example.com&#8221; onClick=&#8221;javascript: pageTracker._trackPageview(&#8217;/outgoing/example.com&#8217;);&#8221;&gt;</span></em></p>
<p><span style="color: #000000;">一般的，_trackPageview()方法的参数是为空的，只是Google Analytics会取得页面的URL作为默认值。跟踪外部链接时需要一个虚拟的URL，比如上面例子中是/outgoing/example.com，这个URL在网站中并不存在，但是在Google Analytics的报告中会作为这个外部链接的表示。在报告中看到这个URL的PageViews的次数，就是这个链接被点击的次数了。</span></p>
<h3><span style="color: #000000;">设置目标</span></h3>
<p><span style="color: #000000;">更进一步的，我希望把访问者点击这个外部链接作为网站的目标，那么可以增加一个Goal来跟踪。Goal的一种匹配模式是URL Destination，它可以匹配当前Google Analytics配置文件跟踪到的所有URL（包括默认的和虚拟的），这种模式用在这里正好。当我们指定了一个URL是Goal以后，当有访问者访问了网站的这个URL，那么一次目标就达成了。按照上面的例子，只要在这里匹配/outgoing/example.com这个URL就可以了。关于Google Analytics目标的设置可以参考我的另一篇《<a title="Google Analytics的新“目标”" href="http://www.webanalytics.org.cn/new-google-analytics-goals/" target="_blank">Google Analytics的新“目标</a>”》。</span></p>
<h3><span style="color: #000000;">注意事项</span></h3>
<p><span style="color: #000000;">链接点击数是有误差的。这种方式只能跟踪到鼠标左键点击链接。如果用户先在链接上点击鼠标右键，再在弹出的小对话框中选择“打开链接”，那么这是是跟踪不到的。</span></p>
<p><span style="color: #000000;">以上是我的理解，欢迎拍砖。</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.webanalytics.org.cn/a-question-of-tracking-exit-links/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Google Analytics新功能发布</title>
		<link>http://www.webanalytics.org.cn/google-analytics-new-features-are-published/</link>
		<comments>http://www.webanalytics.org.cn/google-analytics-new-features-are-published/#comments</comments>
		<pubDate>Thu, 10 Dec 2009 08:47:25 +0000</pubDate>
		<dc:creator>深蓝</dc:creator>
				<category><![CDATA[分析工具]]></category>
		<category><![CDATA[Google Analytics]]></category>
		<category><![CDATA[Segments]]></category>
		<category><![CDATA[注释]]></category>
		<category><![CDATA[自定义]]></category>

		<guid isPermaLink="false">http://www.webanalytics.org.cn/?p=293</guid>
		<description><![CDATA[Google Analytics最近动作不断，前面也介绍了<a title="Google Analytics的新“目标”" href="http://www.webanalytics.org.cn/new-google-analytics-goals/" target="_blank">目标设置</a>、<a title="Google Analytics的智能报警功能" href="http://www.webanalytics.org.cn/google-analytics-intelligence-and-alert/" target="_blank">智能报警</a>、<a title="Google Analytics的新“Advanced Filter”" href="http://www.webanalytics.org.cn/google-analytics-advanced-filter/" target="_blank">高级过滤</a>和<a title="Google Analytics推出异步跟踪" href="http://www.webanalytics.org.cn/google-analytics-launches-asynchronous-tracking/" target="_blank">异步跟踪代码</a>等。马上，Google Analytics又推出了新的功能：
<h3>注释</h3>
网站分析和网站运营的方方面面有关。市场、IT、产品等各个环节的相关人员，可以通过注释，告诉其他人现在发生了些什么事情。比如说，市场人员针对某些产品做了推广，流量和产品销售变大了，那写一个注释，其他同事看到报告就知道这些变化的原因了，方便了各个部门的沟通。
<h3>自定义变量可以在Advanced Segments中使用</h3>
Google Analytics的自定义变量可以满足针对不同网站比较特色的跟踪需求。自定义变量功能在上个月发布的时候，只能在这些变量本身的报表中看到。不过现在，用户可以在自定义变量上做Segment。这就大大有助于我们做更加细化和深入的分析。
<h3>自定义变量可以在自定义报表中使用</h3>
<span style="background-color: #ffffff;" title="You can also create Custom Reports with any of the key or value dimensions associated with any Custom Variable.">您还可以创建与任何自变量相关的方面的自定义报表。</span><span style="background-color: #ffffff;" title="Now, you can see how a segment defined by Custom Variables behaves along any of the metrics available in Google Analytics.">现在，你可以看到由自变量定义的部分行为，并可使用Google Analytics中的所有指标。</span>]]></description>
			<content:encoded><![CDATA[<p>Google Analytics最近动作不断，前面也介绍了<a title="Google Analytics的新“目标”" href="http://www.webanalytics.org.cn/new-google-analytics-goals/" target="_blank">目标设置</a>、<a title="Google Analytics的智能报警功能" href="http://www.webanalytics.org.cn/google-analytics-intelligence-and-alert/" target="_blank">智能报警</a>、<a title="Google Analytics的新“Advanced Filter”" href="http://www.webanalytics.org.cn/google-analytics-advanced-filter/" target="_blank">高级过滤</a>和<a title="Google Analytics推出异步跟踪" href="http://www.webanalytics.org.cn/google-analytics-launches-asynchronous-tracking/" target="_blank">异步跟踪代码</a>等。马上，Google Analytics又推出了新的功能：</p>
<h3>注释</h3>
<p>网站分析和网站运营的方方面面有关。市场、IT、产品等各个环节的相关人员，可以通过注释，告诉其他人现在发生了些什么事情。比如说，市场人员针对某些产品做了推广，流量和产品销售变大了，那写一个注释，其他同事看到报告就知道这些变化的原因了，方便了各个部门的沟通。</p>
<h3>自定义变量可以在Advanced Segments中使用</h3>
<p>Google Analytics的自定义变量可以满足针对不同网站比较特色的跟踪需求。自定义变量功能在上个月发布的时候，只能在这些变量本身的报表中看到。不过现在，用户可以在自定义变量上做Segment。这就大大有助于我们做更加细化和深入的分析。</p>
<h3>自定义变量可以在自定义报表中使用</h3>
<p><span style="background-color: #ffffff;" title="You can also create Custom Reports with any of the key or value dimensions associated with any Custom Variable.">您还可以创建与任何自变量相关的方面的自定义报表。</span><span style="background-color: #ffffff;" title="Now, you can see how a segment defined by Custom Variables behaves along any of the metrics available in Google Analytics.">现在，你可以看到由自变量定义的部分行为，并可使用Google Analytics中的所有指标。</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.webanalytics.org.cn/google-analytics-new-features-are-published/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Analytics推出异步跟踪</title>
		<link>http://www.webanalytics.org.cn/google-analytics-launches-asynchronous-tracking/</link>
		<comments>http://www.webanalytics.org.cn/google-analytics-launches-asynchronous-tracking/#comments</comments>
		<pubDate>Fri, 04 Dec 2009 05:50:22 +0000</pubDate>
		<dc:creator>深蓝</dc:creator>
				<category><![CDATA[新闻资讯]]></category>
		<category><![CDATA[Google Analytics]]></category>
		<category><![CDATA[异步跟踪]]></category>

		<guid isPermaLink="false">http://www.webanalytics.org.cn/?p=271</guid>
		<description><![CDATA[从12月1日开始，Google Analytics推出了异步跟踪的方式，用户可以在同步跟踪与异步跟踪之间选择。异步的跟踪方式具有以下优点：
<ol>
	<li>跟踪代码的加载速度更快，改善浏览器的执行效率</li>
	<li>增强数据收集的准确性</li>
	<li>消除因为JavaScript未完全加载引起的误差</li>
</ol>
下面是异步跟踪的代码：
<pre>&#60;script type="text/javascript"&#62;

  var _gaq = _gaq &#124;&#124; [];
  _gaq.push(['_setAccount', 'UA-XXXXX-X']);
  _gaq.push(['_trackPageview']);

  (function() {
    var ga = document.createElement('script');
    ga.src = ('https:' == document.location.protocol ? 'https://ssl' :
        'http://www') + '.google-analytics.com/ga.js';
    ga.setAttribute('async', 'true');
    document.documentElement.firstChild.appendChild(ga);
  })();

&#60;/script&#62;</pre>]]></description>
			<content:encoded><![CDATA[<p>从12月1日开始，Google Analytics推出了异步跟踪的方式，用户可以在同步跟踪与异步跟踪之间选择。异步的跟踪方式具有以下优点：</p>
<ol>
<li>跟踪代码的加载速度更快，改善浏览器的执行效率</li>
<li>增强数据收集的准确性</li>
<li>消除因为JavaScript未完全加载引起的误差</li>
</ol>
<p>下面是异步跟踪的代码：</p>
<pre>&lt;script type="text/javascript"&gt;

  var _gaq = _gaq || [];
  _gaq.push(['_setAccount', 'UA-XXXXX-X']);
  _gaq.push(['_trackPageview']);

  (function() {
    var ga = document.createElement('script');
    ga.src = ('https:' == document.location.protocol ? 'https://ssl' :
        'http://www') + '.google-analytics.com/ga.js';
    ga.setAttribute('async', 'true');
    document.documentElement.firstChild.appendChild(ga);
  })();

&lt;/script&gt;</pre>
<p>这段代码最开始，在JavaScript中分配了一个变量名为_gap的数组。紧接着，在下面两行把两个API的调用放入了这个数组中。当跟踪代码初始化时，会将_gap从一个标准的数组转化成一个新的对象，然后执行之前放入的API调用。通过这个特性，你可以在跟踪代码被下载前，先将API调用准备好，而不用担心Race Condition（因为多线程执行造成的紊乱）。</p>
<p>第二部分代码会并发的加载跟踪代码。这部分代码在一个匿名的方法中执行，它会建立一个新的Script标签并且通过合适的协议引用跟踪代码。这样做，可以减少页面加载的时间。注意这里很前卫的使用了HTML5中新的“async”标记，它会告诉浏览器这段JavaScript代码可以异步的方式来加载。Firefox3.6是第一款支持这个特性的浏览器。如果与疑问，可以参考<a id="fl-v" title="HTML 5 async specification" href="http://www.whatwg.org/specs/web-apps/current-work/#attr-script-async" target="_blank">HTML5 async specification</a>。</p>
<p>跟踪代码一旦被加载，会将_gap数组转化为一个<a title="Analytics _gaq object" href="http://code.google.com/apis/analytics/docs/gaJS/gaJSApi_gaq.html" target="_blank">Analytics _gaq 对象</a>。这个对象会包装底层的_gap对象，并执行所有的命令，向Google Analytics发送数据。你页面上的代码甚至可以忽略这个事实，因为_gap.push这个语法可以在任何时候使用。在<a id="beu5" title="Asynchronous Tracking Usage Guide" href="http://code.google.com/apis/analytics/docs/tracking/asyncUsageGuide.html" target="_blank">Asynchronous Tracking Usage Guide</a>可以获得详细信息。</p>
<p>这种新的跟踪方式现在处于Beta测试，所有Google Analytics的账户都可以使用。</p>
<p>一个完整的例子：</p>
<pre style="font-family: monospace; color: #007000; font-size: 9pt; background-color: #fafafa; line-height: 15px; margin-top: 1em; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; overflow-x: auto; overflow-y: auto; word-wrap: break-word; padding: 0.99em; border: 1px solid #bbbbbb;"><span style="color: #000088;">&lt;html&gt;</span><span style="color: #000000;">

</span><span style="color: #000088;">&lt;head&gt;</span><span style="color: #000000;">
  </span><span style="color: #000088;">&lt;script</span><span style="color: #000000;"> </span><span style="color: #660066;">type</span><span style="color: #666600;">=</span><span style="color: #008800;">"text/javascript"</span><span style="color: #000088;">&gt;</span><span style="color: #000000;">
    </span><span style="color: #000088;">var</span><span style="color: #000000;"> _gaq </span><span style="color: #666600;">=</span><span style="color: #000000;"> _gaq </span><span style="color: #666600;">||</span><span style="color: #000000;"> </span><span style="color: #666600;">[];</span><span style="color: #000000;">
    _gaq</span><span style="color: #666600;">.</span><span style="color: #000000;">push</span><span style="color: #666600;">([</span><span style="color: #008800;">'_setAccount'</span><span style="color: #666600;">,</span><span style="color: #000000;"> </span><span style="color: #008800;">'UA-XXXXX-X'</span><span style="color: #666600;">]);</span><span style="color: #000000;">
    _gaq</span><span style="color: #666600;">.</span><span style="color: #000000;">push</span><span style="color: #666600;">([</span><span style="color: #008800;">'_trackPageview'</span><span style="color: #666600;">]);</span><span style="color: #000000;">
  </span><span style="color: #000088;">&lt;/script&gt;</span><span style="color: #000000;">
</span><span style="color: #000088;">&lt;/head&gt;</span><span style="color: #000000;">

</span><span style="color: #000088;">&lt;body&gt;</span><span style="color: #000000;">
  </span><span style="color: #000088;">&lt;p&gt;</span><span style="color: #000000;">Page Content</span><span style="color: #000088;">&lt;/p&gt;</span><span style="color: #000000;">

  </span><span style="color: #000088;">&lt;script</span><span style="color: #000000;"> </span><span style="color: #660066;">src</span><span style="color: #666600;">=</span><span style="color: #008800;">"some_random_script.js"</span><span style="color: #000088;">&gt;</span><span style="color: #666600;">&lt;</span><span style="color: #008800;">/script&gt;

  &lt;p&gt;Page Content&lt;/</span><span style="color: #000000;">p</span><span style="color: #666600;">&gt;</span><span style="color: #000000;">

  </span><span style="color: #666600;">&lt;</span><span style="color: #000000;">script type</span><span style="color: #666600;">=</span><span style="color: #008800;">"text/javascript"</span><span style="color: #666600;">&gt;</span><span style="color: #000000;">
    </span><span style="color: #666600;">(</span><span style="color: #000088;">function</span><span style="color: #666600;">()</span><span style="color: #000000;"> </span><span style="color: #666600;">{</span><span style="color: #000000;">
      </span><span style="color: #000088;">var</span><span style="color: #000000;"> ga </span><span style="color: #666600;">=</span><span style="color: #000000;"> document</span><span style="color: #666600;">.</span><span style="color: #000000;">createElement</span><span style="color: #666600;">(</span><span style="color: #008800;">'script'</span><span style="color: #666600;">);</span><span style="color: #000000;">
      ga</span><span style="color: #666600;">.</span><span style="color: #000000;">src </span><span style="color: #666600;">=</span><span style="color: #000000;"> </span><span style="color: #666600;">(</span><span style="color: #008800;">'https:'</span><span style="color: #000000;"> </span><span style="color: #666600;">==</span><span style="color: #000000;"> document</span><span style="color: #666600;">.</span><span style="color: #000000;">location</span><span style="color: #666600;">.</span><span style="color: #000000;">protocol </span><span style="color: #666600;">?</span><span style="color: #000000;"> </span><span style="color: #008800;">'https://ssl'</span><span style="color: #000000;"> </span><span style="color: #666600;">:</span><span style="color: #000000;"> </span><span style="color: #008800;">'http://www'</span><span style="color: #666600;">)</span><span style="color: #000000;"> </span><span style="color: #666600;">+</span><span style="color: #000000;"> </span><span style="color: #008800;">'.google-analytics.com/ga.js'</span><span style="color: #666600;">;</span><span style="color: #000000;">
      ga</span><span style="color: #666600;">.</span><span style="color: #000000;">setAttribute</span><span style="color: #666600;">(</span><span style="color: #008800;">'async'</span><span style="color: #666600;">,</span><span style="color: #000000;"> </span><span style="color: #008800;">'true'</span><span style="color: #666600;">);</span><span style="color: #000000;">
      document</span><span style="color: #666600;">.</span><span style="color: #000000;">documentElement</span><span style="color: #666600;">.</span><span style="color: #000000;">firstChild</span><span style="color: #666600;">.</span><span style="color: #000000;">appendChild</span><span style="color: #666600;">(</span><span style="color: #000000;">ga</span><span style="color: #666600;">);</span><span style="color: #000000;">
    </span><span style="color: #666600;">})();</span><span style="color: #000000;">
  </span><span style="color: #000088;">&lt;/script&gt;</span><span style="color: #000000;">
</span><span style="color: #000088;">&lt;/body&gt;</span><span style="color: #000000;">
</span><span style="color: #000088;">&lt;/html&gt;</span></pre>
]]></content:encoded>
			<wfw:commentRss>http://www.webanalytics.org.cn/google-analytics-launches-asynchronous-tracking/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>网站分析术语在WAA和Google Analytics</title>
		<link>http://www.webanalytics.org.cn/compliant-of-web-analytics-between-waa-and-google-analytics/</link>
		<comments>http://www.webanalytics.org.cn/compliant-of-web-analytics-between-waa-and-google-analytics/#comments</comments>
		<pubDate>Thu, 03 Dec 2009 03:01:43 +0000</pubDate>
		<dc:creator>深蓝</dc:creator>
				<category><![CDATA[基础知识]]></category>
		<category><![CDATA[Google Analytics]]></category>
		<category><![CDATA[WAA]]></category>
		<category><![CDATA[报表解读]]></category>
		<category><![CDATA[术语]]></category>

		<guid isPermaLink="false">http://www.webanalytics.org.cn/?p=266</guid>
		<description><![CDATA[在WAA中定义了网站分析的标准术语，那在Google Analytics中也有自己的一套术语，这两套属于的兼容性如何？我在Analytics Talk的网站上找到以下这个对应表，详细列出了WAA的定义和Google Analytics的定义。我想，应该会对我们正确解读Google Analytics的报表有帮助。]]></description>
			<content:encoded><![CDATA[<p>在<a title="网站分析协会" href="http://www.webanalyticsassociation.org/" target="_blank">WAA</a>中定义了网站分析的标准术语，那在<a title="Google Analytics" href="http://www.google.com/analytics/" target="_blank">Google Analytics</a>中也有自己的一套术语，这两套属于的兼容性如何？我在<a title="Analytics Talk" href="http://www.epikone.com/blog/2008/09/21/google-analytics-compliance-with-waa-standard-metrics/">Analytics Talk的网站</a>上找到以下这个对应表，详细列出了WAA的定义和Google Analytics的定义。我想，应该会对我们正确解读Google Analytics的报表有帮助。</p>
<table id="r503" border="1" cellspacing="0" cellpadding="3" width="100%" bordercolor="#000000">
<tbody>
<tr bgcolor="#6fa8dc">
<td width="25%"><strong><span style="font-size: x-small;">Compliant</span></strong></td>
<td width="25%"><strong><span style="font-size: x-small;">Term</span></strong></td>
<td width="25%"><strong><span style="font-size: x-small;">WAA Definition</span></strong></td>
<td width="25%"><strong><span style="font-size: x-small;">GA Definition</span></strong></td>
</tr>
<tr>
<td width="25%"><span style="color: #38761d;"><strong><span style="font-size: x-small;">Yes</span></strong></span></td>
<td width="25%"><span style="font-size: x-small;">Page</span></td>
<td width="25%">
<p style="margin: 0px;"><span style="font-size: x-small;">A page is an analyst definable unit of content.</span></p>
</td>
<td width="25%"><span style="font-size: x-small;">Same as WAA</p>
<p></span></td>
</tr>
<tr>
<td width="25%"><span style="color: #38761d;"><strong><span style="font-size: x-small;">Yes</span></strong></span></td>
<td width="25%"><span style="font-size: x-small;">Page View</span></td>
<td width="25%">
<p style="margin: 0px;"><span style="font-size: x-small;">The number of times a page (an analyst-definable unit of content) was viewed.</span></p>
</td>
<td width="25%"><span style="font-size: x-small;">Same as WAA.</p>
<p><span style="font-size: x-small;"> Note: A pageview is created each time the _trackPageview() method is executed.  Any value passed to the _trackPageview() method will appear in the Content reports, thus making a Page analyst definable.</span></p>
<p></span></td>
</tr>
<tr>
<td width="25%"><span style="color: #38761d;"><strong><span style="font-size: x-small;">Yes</span></strong></span></td>
<td width="25%"><span style="font-size: x-small;">Visits/Sessions</span></td>
<td width="25%"><span style="font-size: x-small;">A visit is an interaction, by an individual, with a website consisting of one or more requests for an analyst-definable unit of content (i.e. “page view”). If an individual has not taken another action (typically additional page views) on the site within a specified time period, the visit session will terminate.</span></td>
<td width="25%"><span style="font-size: x-small;">Same as WAA.</p>
<p><span style="font-size: x-small;"> Note: By default, a visit will terminate after 30 minutes of inactivity by the visitor.  The legth of inactivity can be modified by altering the Google Analytics tracking code.</span></p>
<p></span></td>
</tr>
<tr>
<td width="25%"><span style="color: #38761d;"><strong><span style="font-size: x-small;">Yes</span></strong></span></td>
<td width="25%">
<p style="margin: 0px;"><span style="font-size: x-small;">Unique Visitors</span></p>
</td>
<td width="25%"><span style="font-size: x-small;">The number of inferred individual people (filtered for spiders and robots), within a designated reporting timeframe, with activity consisting of one or more visits to a site. Each individual is counted only once in the unique visitor measure for the reporting period.</span></td>
<td width="25%">
<p style="margin: 0px;"><span style="font-size: x-small;">Same as WAA</span></p>
<p style="margin: 0px; min-height: 14px;">
<p style="margin: 0px;"><span style="font-size: x-small;">Note: Google Analytics defines this term as Absolute Unique Visitors.</span></p>
<p style="margin: 0px; min-height: 14px;">
<p style="margin: 0px;"><span style="font-size: x-small;">A visitor is defined using a unique numeric identifier stored in the Google Analytics tracking cookies.  This value is set when the visitor’s first visit is created.</span></p>
<p style="margin: 0px; min-height: 14px;">
<p style="margin: 0px;"><span style="font-size: x-small;">Each visitor is counted only once in the Absolute Unique Visitor metric, regardless of how many times they return to the site during the reporting period.</span></p>
</td>
</tr>
<tr>
<td width="25%"><span style="font-weight: bold; "><span style="color: #38761d;">Yes</span></span></td>
<td width="25%">
<p style="margin: 0px;"><span style="font-size: x-small;">New Visitor</span></p>
</td>
<td width="25%">
<p style="margin: 0px;"><span style="font-size: x-small;">The number of Unique Visitors with activity including a first-ever Visit to a site during a reporting period.</span></p>
</td>
<td width="25%">
<p style="margin: 0px;">Same as WAA</p>
<p style="margin: 0px; min-height: 14px;">
<p style="margin: 0px;"><span style="font-size: x-small;">Note: While GA does share the same definition for a new visitor it does not  does not count the number of new, unique people (visitors) that have visited the site during the reporting period.  GA counts the number of VISITS generated by new people.</span></p>
<p style="margin: 0px; min-height: 14px;">
<p style="margin: 0px;"><span style="font-size: x-small;">Google Analytics calculate the number of New visitors by identifying the number of new unique visitor IDs that were created during the reporting period.</span></p>
<p style="margin: 0px; min-height: 14px;">
<p style="margin: 0px;">It is possible to measure the number of new visitors using a profile and include filter.</p>
</td>
</tr>
<tr>
<td width="25%"><span style="color: #ff0000;"><strong><span style="font-size: x-small;">NO</span></strong></span></td>
<td width="25%">
<p style="margin: 0px;"><span style="font-size: x-small;">Repeat Visitor</span></p>
</td>
<td width="25%">
<p style="margin: 0px;"><span style="font-size: x-small;">The number of Unique Visitors with activity consisting</span></p>
<p style="margin: 0px;"><span style="font-size: x-small;">of two or more Visits to a site during a reporting period.</span></p>
</td>
<td width="25%"><span style="font-size: x-small;"></p>
<p>N/a</p>
<p><span style="font-size: x-small;">This metric does not exist in Google Analytics.</span></p>
<p></span></td>
</tr>
<tr>
<td width="25%"><span style="font-weight: bold; "><span style="color: #38761d;">Yes</span></span></td>
<td width="25%">
<p style="margin: 0px;"><span style="font-size: x-small;">Return Visitor</span></p>
</td>
<td width="25%"><span style="font-size: x-small;">The number of Unique Visitors with activity consisting of a Visit to a site during a reporting period and where the Unique Visitor also Visited the site prior to the reporting period.</span></td>
<td width="25%">
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: normal; font-variant: normal; font-weight: normal; line-height: normal">Same as WAA</p>
<p style="margin: 0px; min-height: 14px;">
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: normal; font-variant: normal; font-weight: normal; line-height: normal">Note: While GA does share the same definition for a return visitor it does not  does not count the number of returning unique people (visitors) that have visited the site during the reporting period.  GA counts the number of VISITS generated by people coming .</p>
<p style="margin: 0px; min-height: 14px;">
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: normal; font-variant: normal; font-weight: normal; line-height: normal">GA identifies a return visitor as any visit generated by a person who’s unique identifier cookie was set prior to the reporting period.</p>
</td>
</tr>
<tr>
<td width="25%"><span style="color: #38761d;"><strong><span style="font-size: x-small;">Yes</span></strong></span></td>
<td width="25%">
<p style="margin: 0px;"><span style="font-size: x-small;">Entry Page</span></p>
</td>
<td width="25%">
<p style="margin: 0px;"><span style="font-size: x-small;">The first page of a visit.</span></p>
</td>
<td width="25%"><span style="font-size: x-small;">Same as WAA</span></td>
</tr>
<tr>
<td width="25%"><span style="color: #38761d;"><strong><span style="font-size: x-small;">Yes</span></strong></span></td>
<td width="25%">
<p style="margin: 0px;"><span style="font-size: x-small;">Landing Page</span></p>
</td>
<td width="25%">
<p style="margin: 0px;"><span style="font-size: x-small;">A page intended to identify the beginning of the user</span></p>
<p style="margin: 0px;"><span style="font-size: x-small;">experience resulting from a defined marketing effort.</span></p>
</td>
<td width="25%">
<p style="margin: 0px;"><span style="font-size: x-small;">Same as WAA</span></p>
</td>
</tr>
<tr>
<td width="25%"><span style="color: #38761d;"><strong><span style="font-size: x-small;">Yes</span></strong></span></td>
<td width="25%">
<p style="margin: 0px;"><span style="font-size: x-small;">Exit Page</span></p>
</td>
<td width="25%">
<p style="margin: 0px;"><span style="font-size: x-small;">The last page on a site accessed during a visit, signifying the end of a visit/session.</span></p>
</td>
<td width="25%">
<p style="margin: 0px;"><span style="font-size: x-small;">Same as WAA</span></p>
</td>
</tr>
<tr>
<td width="25%"><span style="color: #38761d;"><strong><span style="font-size: x-small;">Yes</span></strong></span></td>
<td width="25%">
<p style="margin: 0px;"><span style="font-size: x-small;">Visit Duration</span></p>
</td>
<td width="25%"><span style="font-size: x-small;">The length of time in a session. Calculation is typically the timestamp of the last activity in the session minus the timestamp of the first activity of the session.</span></td>
<td width="25%">
<p style="margin: 0px;"><span style="font-size: x-small;">Same as WAA</span></p>
<p style="margin: 0px; min-height: 14px;">
<p style="margin: 0px;"><span style="font-size: x-small;">Note: Google Analytics uses a different name for this metric.  It is called ‘Average Time on Site’.</span></p>
<p style="margin: 0px; min-height: 14px;">
<p style="margin: 0px;"><span style="font-size: x-small;">The average time on site is calculated by dividing the total time spent on the site by the total number of Visits. </span></p>
</td>
</tr>
<tr>
<td width="25%"><span style="color: #ff0000;"><strong><span style="font-size: x-small;">NO</span></strong></span></td>
<td width="25%">
<p style="margin: 0px;"><span style="font-size: x-small;">Referrer</span></p>
</td>
<td width="25%"><span style="font-size: x-small;">The referrer is the page URL that originally generated the request for the current page view or object. </span></td>
<td width="25%">
<p style="margin: 0px;"><span style="font-size: x-small;">The referrer in Google Analytics is the page URL that originally generated the request for the current </span><strong><span style="font-size: x-small;">VISIT</span></strong><span style="font-size: x-small;">.  This value is then added to all pageviews in that visit. </span></p>
<p style="margin: 0px; min-height: 14px;">
<p style="margin: 0px;"><span style="font-size: x-small;">The referrer is identified in GA as any source whose medium is “referral”.</span></p>
<p style="margin: 0px; min-height: 14px;">
<p><span style="font-size: x-small;"> </span></p>
<p>GA also has a field called ‘Referral’ which does conform to the WAA’s definition.  However; this is not a field displayed in any report, only available as a filter field.</td>
</tr>
<tr>
<td width="25%"><span style="color: #ff0000;"><strong><span style="font-size: x-small;">N/a</span></strong></span></td>
<td width="25%">
<p style="margin: 0px;"><span style="font-size: x-small;">Internal Referrer</span></p>
</td>
<td width="25%"><span style="font-size: x-small;">The internal referrer is a page URL that is internal to the website or a web-property within the website as defined by the user.</span></td>
<td width="25%">
<p style="margin: 0px;"><span style="font-size: x-small;">N/a</span></p>
<p style="margin: 0px; min-height: 14px;">
<p style="margin: 0px;"><span style="font-size: x-small;">This metric is not available in GA.</span></p>
</td>
</tr>
<tr>
<td width="25%"><span style="color: #ff0000;"><strong>N/a</strong></span></p>
<p style="margin: 0px;">
</td>
<td width="25%">
<p style="margin: 0px;"><span style="font-size: x-small;">External Referrer</span></p>
</td>
<td width="25%">
<p style="margin: 0px;"><span style="font-size: x-small;">The external referrer is a page URL where the traffic is external or outside of the website or a web property defined by the user.</span></p>
</td>
<td width="25%"><span style="font-size: x-small;">N/a</p>
<p>This metric is not available in GA.</p>
<p><span style="font-size: x-small;">See definition of Referrer above.</span></p>
<p></span></td>
</tr>
<tr>
<td width="25%"><span style="color: #ff0000;"><strong>N/a</strong></span></td>
<td width="25%">
<p style="margin: 0px;"><span style="font-size: x-small;">Search Referrer</span></p>
</td>
<td width="25%">
<p style="margin: 0px;"><span style="font-size: x-small;">The search referrer is an internal or external referrer for which the URL has been generated by a search function.</span></p>
</td>
<td width="25%"><span style="font-size: x-small;">N/a</p>
<p>This metric is not available in GA.</p>
<p><span style="font-size: x-small;">Note: While Google Analytics does track both external search phrases and internal search phrases, the term ’search referrer’ is not used in reporting.</span></p>
<p></span></td>
</tr>
<tr>
<td width="25%"><span style="color: #38761d;"><strong>Yes</strong></span></td>
<td width="25%">
<p style="margin: 0px;"><span style="font-size: x-small;">Visit Referrer</span></p>
</td>
<td width="25%">
<p style="margin: 0px;"><span style="font-size: x-small;">The visit referrer is the first referrer in a session, whether internal, external or null.</span></p>
</td>
<td width="25%">
<p style="margin: 0px;"><span style="font-size: x-small;">Same as WAA</span></p>
<p style="margin: 0px; min-height: 14px;">
<p style="margin: 0px;"><span style="font-size: x-small;">Note: This data is called a Referral in Google Analytics and can </span><strong>ONLY</strong><span style="font-size: x-small;"> be the external referrer.</span></p>
</td>
</tr>
<tr>
<td width="25%"><span style="color: #ff0000;"><strong><span style="font-size: x-small;">N/a</span></strong></span></td>
<td width="25%">
<p style="margin: 0px;"><span style="font-size: x-small;">Original Referrer</span></p>
</td>
<td width="25%">
<p style="margin: 0px;"><span style="font-size: x-small;">The original referrer is the first referrer in a visitor’s first session, whether internal, external or null.</span></p>
</td>
<td width="25%">
<p style="margin: 0px;"><span style="font-size: x-small;"> </span></p>
<p>N/a</p>
<p style="margin: 0px;">
<p style="margin: 0px;"><span style="font-size: x-small;">This metric is not available in GA.</span></p>
<p style="margin: 0px;">
<p style="margin: 0px;"><span style="font-size: x-small;">Note: See information about Referrer above.</span></p>
</td>
</tr>
<tr>
<td width="25%">
<p style="margin: 0px;"><span style="color: #38761d;"><strong><span style="font-size: x-small;">Yes</span></strong></span></p>
</td>
<td width="25%">
<p style="margin: 0px;"><span style="font-size: x-small;">Click-through</span></p>
</td>
<td width="25%">
<p style="margin: 0px;"><span style="font-size: x-small;">Number of times a link was clicked by a visitor.</span></p>
</td>
<td width="25%">
<p style="margin: 0px;"><span style="font-size: x-small;">Same as WAA</span></p>
<p style="margin: 0px; min-height: 14px;">
<p style="margin: 0px;"><span style="font-size: x-small;">Note: Google Analytics refers to Click-throughs as ‘clicks’.</span></p>
<p style="margin: 0px;">
<p style="margin: 0px;"><span style="font-size: x-small;">This metric is only available in the AdWords reports.</span></p>
</td>
</tr>
<tr>
<td width="25%"><span style="color: #38761d;"><strong><span style="font-size: x-small;">Yes</span></strong></span></td>
<td width="25%">
<p style="margin: 0px;"><span style="font-size: x-small;">Click-through Rate/Ratio</span></p>
</td>
<td width="25%">
<p style="margin: 0px;"><span style="font-size: x-small;">The number of click-throughs for a specific link divided by the number of times that link was viewed.</span></p>
</td>
<td width="25%">
<p style="margin: 0px;"><span style="font-size: x-small;">Same as WAA</span></p>
<p style="margin: 0px; min-height: 14px;">
<p style="margin: 0px;"><span style="font-size: x-small;">Note: Click-through and Click-through Rate  is the percentage of impressions that resulted in a click.  It is calculated by dividing the number of clicks on an ad(s) by the number of impressions for the ad(s).</span></p>
<p style="margin: 0px; min-height: 14px;">
<p style="margin: 0px;"><span style="font-size: x-small;">This metric is only available in the </span><span style="font-size: x-small;">AdWords reports.</span></p>
</td>
</tr>
<tr>
<td width="25%">
<p style="margin: 0px;"><span style="color: #38761d;"><strong><span style="font-size: x-small;">Yes</span></strong></span></p>
</td>
<td width="25%">
<p style="margin: 0px;"><span style="font-size: x-small;">Page Views per Visit</span></p>
</td>
<td width="25%">
<p style="margin: 0px;"><span style="font-size: x-small;">The number of page views in a reporting period divided</span></p>
<p style="margin: 0px;"><span style="font-size: x-small;">by number of visits in the same reporting period.</span></p>
</td>
<td width="25%">
<p style="margin: 0px;"><span style="font-size: x-small;">Same as WAA</span></p>
</td>
</tr>
<tr>
<td width="25%"><span style="color: #38761d;"><strong>Yes</strong></span></p>
<p style="margin: 0px;">
</td>
<td width="25%">
<p style="margin: 0px;"><span style="font-size: x-small;">Page Exit Ratio</span></p>
</td>
<td width="25%">
<p style="margin: 0px;"><span style="font-size: x-small;">Number of exits from a page divided by total number of</span></p>
<p style="margin: 0px;"><span style="font-size: x-small;">page views of that page.</span></p>
</td>
<td width="25%">
<p style="margin: 0px;">Same as WAA</p>
<p style="margin: 0px; min-height: 14px;">
<p style="margin: 0px;"><span style="font-size: x-small;">This metric is called ‘Exit %’.</span></p>
</td>
</tr>
<tr>
<td width="25%">
<p style="margin: 0px;"><span style="color: #ff0000;"><strong><span style="font-size: x-small;">N/a</span></strong></span></p>
</td>
<td width="25%">
<p style="margin: 0px;"><span style="font-size: x-small;">Single-Page Visits</span></p>
</td>
<td width="25%">
<p style="margin: 0px;"><span style="font-size: x-small;">Visits that consist of one page regardless of the number</span></p>
<p style="margin: 0px;"><span style="font-size: x-small;">of times the page was viewed.</span></p>
</td>
<td width="25%">
<p style="margin: 0px;"><span style="font-size: x-small;">N/A</span></p>
<p style="margin: 0px; min-height: 14px;">
<p style="margin: 0px;"><span style="font-size: x-small;">This metric is not available in GA.</span></p>
</td>
</tr>
<tr>
<td width="25%">
<p style="margin: 0px;"><span style="color: #38761d;"><strong><span style="font-size: x-small;">Yes</span></strong></span></p>
</td>
<td width="25%">
<p style="margin: 0px;"><span style="font-size: x-small;">Single Page View Visits (Bounces)</span></p>
</td>
<td width="25%">
<p style="margin: 0px;"><span style="font-size: x-small;">Visits that consist of one pageview.</span></p>
</td>
<td width="25%">
<p style="margin: 0px;"><span style="font-size: x-small;">Same as WAA</span></p>
<p style="margin: 0px; min-height: 14px;">
<p style="margin: 0px;"><span style="font-size: x-small;">Note: Bounces can be modified by other Google Analytics features; specifically Custom segmentation and event tracking.</span></p>
<p style="margin: 0px;">
<p style="margin: 0px;"><span style="font-size: x-small;"> </span></p>
<p>When either of the previous features are used the Google Analytics tracking code will request the invisible gif from the Google Analytics server.</p>
<p style="margin: 0px; min-height: 14px;">
<p style="margin: 0px;"><span style="font-size: x-small;"> </span></p>
<p>Google Analytics will interpret this GIF request as a visitor action and conclude that they are engaged with the webpage and will <strong>NOT</strong><span style="font-size: x-small;"> count them as a Bounce.</span></p>
<p style="margin: 0px; min-height: 14px;">
<p style="margin: 0px;"><span style="font-size: x-small;"> </span></p>
<p>To be clear, if a visitor lands on a page, and views a video that is tracked using event tracking, and then leaves the site from the original landing page, a bounce will <strong>NOT</strong><span style="font-size: x-small;"> be counted.</span></p>
<p style="margin: 0px; min-height: 14px;">
<p style="margin: 0px;"><span style="font-size: x-small;"> </span></p>
<p>The same is true for custom segmentation.  If a visitor is placed in a custom segment on a landing page, and does not view any other pages, a Bounce will <strong>NOT</strong><span style="font-size: x-small;"> be counted. </span></td>
</tr>
<tr>
<td width="25%"><span style="color: #38761d;"><strong><span style="font-size: x-small;">Yes</span></strong></span></p>
<p style="margin: 0px; min-height: 14px;">
</td>
<td width="25%">
<p style="margin: 0px;"><span style="font-size: x-small;">Bounce Rate </span></p>
</td>
<td width="25%">
<p style="margin: 0px;"><span style="font-size: x-small;">Single page view visits divided by entry pages.</span></p>
</td>
<td width="25%">
<p style="margin: 0px;"><span style="font-size: x-small;">Same as WAA</span></p>
<p style="margin: 0px; min-height: 14px;">
<p style="margin: 0px;"><span style="font-size: x-small;"> </span></p>
<p>NOTE:  See comment above regarding how the number of bounces can change based on the use of Event Tracking or Custom Segmentation.</td>
</tr>
<tr>
<td width="25%">
<p style="margin: 0px;"><span style="color: #38761d;"><strong><span style="font-size: x-small;">Yes</span></strong></span></p>
</td>
<td width="25%">
<p style="margin: 0px;"><span style="font-size: x-small;">Event</span></p>
</td>
<td width="25%">
<p style="margin: 0px;"><span style="font-size: x-small;">Any logged or recorded action that has a specific date and time assigned to it by either the browser or server.</span></p>
</td>
<td width="25%">
<p style="margin: 0px;"><span style="font-size: x-small;">Same as WAA</span></p>
<p style="margin: 0px; min-height: 14px;">
<p style="margin: 0px;"><span style="font-size: x-small;">Note: There are multiple attributes to an event in Google Analytics.  There are objects, actions and labels.</span></p>
<p style="margin: 0px; min-height: 14px;">
<p style="margin: 0px;"><span style="font-size: x-small;">Event Tracking is a Google Analytics Beta feature and may not be enabled in your account.  You can read more about Event tracking in </span><a id="u2hv" title="this post" href="http://www.epikone.com/blog/2007/10/16/event-tracking-pt-1-overview-data-model/"><span style="font-size: x-small;">this post</span></a><span style="font-size: x-small;"> or on the </span><a id="o.dz" title="GA Code Site" href="http://code.google.com/apis/analytics/docs/eventTrackerOverview.html" target="_blank"><span style="font-size: x-small;">GA Code Site</span></a><span style="font-size: x-small;">.</span></p>
</td>
</tr>
<tr>
<td width="25%">
<p style="margin: 0px;"><span style="color: #38761d;"><strong><span style="font-size: x-small;">Yes</span></strong></span></p>
</td>
<td width="25%">
<p style="margin: 0px;"><span style="font-size: x-small;">Conversion</span></p>
</td>
<td width="25%">
<p style="margin: 0px;"><span style="font-size: x-small;">A visitor completing a target action.</span></p>
</td>
<td width="25%">
<p style="margin: 0px;"><span style="font-size: x-small;">Same as WAA</span></p>
<p style="margin: 0px; min-height: 14px;">
<p style="margin: 0px;"><span style="font-size: x-small;">Note: In addition to conversions, Google Analytics will also calculate Conversion Rate.  Conversion rate is the total # of visits resulting in a desired action divided by the total number of visits.</span></p>
<p style="margin: 0px; min-height: 14px;">
<p style="margin: 0px;"><span style="font-size: x-small;"> </span></p>
<p>Also note that a conversion will only be recorded ONCE per visits.  Visitors can not convert more than one time per visit.</p>
<p style="margin: 0px; min-height: 14px;">
<p style="margin: 0px;"><span style="font-size: x-small;">You can read more about goals in this post: </span><a id="ab.q" title="All About Google Analytics Goals" href="http://www.epikone.com/blog/2007/07/07/google-analytics-goals/" target="_blank"><span style="font-size: x-small;">All About Google Analytics Goals</span></a><span style="font-size: x-small;">.</span></p>
</td>
</tr>
</tbody>
</table>
]]></content:encoded>
			<wfw:commentRss>http://www.webanalytics.org.cn/compliant-of-web-analytics-between-waa-and-google-analytics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Analytics的智能报警功能</title>
		<link>http://www.webanalytics.org.cn/google-analytics-intelligence-and-alert/</link>
		<comments>http://www.webanalytics.org.cn/google-analytics-intelligence-and-alert/#comments</comments>
		<pubDate>Thu, 26 Nov 2009 03:04:59 +0000</pubDate>
		<dc:creator>深蓝</dc:creator>
				<category><![CDATA[分析工具]]></category>
		<category><![CDATA[Google Analytics]]></category>
		<category><![CDATA[智能]]></category>

		<guid isPermaLink="false">http://www.webanalytics.org.cn/?p=235</guid>
		<description><![CDATA[Google Analytics最近发布或增强了多个功能，包括“<strong><a title="Google Analytics的新“目标”" href="http://www.webanalytics.org.cn/new-google-analytics-goals/" target="_blank">增强的目标设置</a></strong>”和“<strong><a title="Google Analytics高级过滤器" href="http://www.webanalytics.org.cn/google-analytics-advanced-filter/" target="_blank">高级过滤器</a></strong>”，而我个人觉得最好用的，还是“<strong>智能报警（Intelligence）</strong>”。

我想，网站分析人员都会很关心网站都在发生什么变化，了解这些变化，洞悉带来这些变化的原因，往往成为网站优化的突破口。网站分析工具许多的报表中带有大量的数据，把当前的数据与过往数据的比较，需要花费相当的时间和精力。而智能报警功能，则可以节省这部分花费，代替人完成部分分析。
<h3>智能报警如何使用</h3>
不需要任何设置，自动的智能报警就已经发挥他强大的能力了。]]></description>
			<content:encoded><![CDATA[<p>Google Analytics最近发布或增强了多个功能，包括“<strong><a title="Google Analytics的新“目标”" href="http://www.webanalytics.org.cn/new-google-analytics-goals/" target="_blank">增强的目标设置</a></strong>”和“<strong><a title="Google Analytics高级过滤器" href="http://www.webanalytics.org.cn/google-analytics-advanced-filter/" target="_blank">高级过滤器</a></strong>”，而我个人觉得最好用的，还是“<strong>智能报警（Intelligence）</strong>”。</p>
<p>我想，网站分析人员都会很关心网站都在发生什么变化，了解这些变化，洞悉带来这些变化的原因，往往成为网站优化的突破口。网站分析工具许多的报表中带有大量的数据，把当前的数据与过往数据的比较，需要花费相当的时间和精力。而智能报警功能，则可以节省这部分花费，代替人完成部分分析。</p>
<h3>智能报警如何使用</h3>
<p>不需要任何设置，自动的智能报警就已经发挥他强大的能力了。</p>
<p><img class="alignnone size-full wp-image-236" title="Google Analytics智能报警" src="http://www.webanalytics.org.cn/wp-content/uploads/2009/11/Google-Analytics-Intelligence.jpg" alt="Google Analytics智能报警" width="480" height="492" /></p>
<p>Google Analytics会自动分析以往数据，各个维度的所有度量值的正常波动区间，然后报告当前波动异常的数据。同时，Google Analytics还会根据不同的维度和量度，以及数据的波动情况，评估报告的每条记录的重要程度，供用户参考。用户也可以通过调整报告的敏感程度，当敏感程度被调低时，一些重要度不高的报警记录就可能被过滤掉。反之，调高敏感程度，就会看到更多的报警记录。</p>
<p>Google Analytics还有自定义报警功能。如果你对某些类型的访问者尤其感兴趣，设置自定义报警可以特别的跟踪。比如，可以监控Banner广告带来的收入，当收入减少20％的时候，就触发报警，Google Analytics会自动发送一封邮件到指定的信箱。</p>
<p><img class="alignnone size-full wp-image-237" title="Google Analytics自定义报警" src="http://www.webanalytics.org.cn/wp-content/uploads/2009/11/Google-Analytics-Custom-Alert.jpg" alt="Google Analytics自定义报警" width="480" height="171" /></p>
<h3>深入网站分析</h3>
<p>通过智能报警发现了网站上各种度量的波动只是开始，下一步还需要进一步分析原因，进而考虑是否有优化改善的可能。Google Analytics在这里有非常人性化的设计，在每条记录的右边，有一个“Create Segment”的链接。</p>
<p><img class="alignnone size-full wp-image-238" title="Google Analytics智能报警记录" src="http://www.webanalytics.org.cn/wp-content/uploads/2009/11/Google-Analytics-Intelligence-Record.jpg" alt="Google Analytics智能报警记录" width="480" height="111" /></p>
<p>点击这个链接，就可以方便的建立高级群体的分类。通过分类，可以分析特定群体的行为，从而发现出现较大波动的原因。比如，上图例子中通过CPC广告来到网站的访问者在网站上的停留时间超过预期值122％。点击“Create Segment”链接，可以很方便的建立一个高级群体分类，这个分类中的访问者都是通过CPC广告到网站的。之后在各个报表中，观察这个访问群体的情况，可以细化的挖掘更多信息，从而寻找变化的原因。</p>
<p><img class="alignnone size-full wp-image-239" title="Google Analytics高级群体" src="http://www.webanalytics.org.cn/wp-content/uploads/2009/11/Google-Analytics-Advanced-Segment.jpg" alt="Google Analytics高级群体" width="480" height="224" /></p>
<h3>无法代替人工作</h3>
<p>Google Analytics发布的智能报警功能，能够减少分析人员的一部分工作，但是它并不能代替人的工作。智能报警一定的算法，自动的报告异常，但分析真正的原因和优化改善的提案这些创造性的工作必须依赖人的头脑。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webanalytics.org.cn/google-analytics-intelligence-and-alert/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>拷贝Google Analytics目标的插件更新</title>
		<link>http://www.webanalytics.org.cn/google-analyticsgoal-copy-plugin-updated/</link>
		<comments>http://www.webanalytics.org.cn/google-analyticsgoal-copy-plugin-updated/#comments</comments>
		<pubDate>Wed, 25 Nov 2009 09:48:50 +0000</pubDate>
		<dc:creator>深蓝</dc:creator>
				<category><![CDATA[新闻资讯]]></category>
		<category><![CDATA[Goals]]></category>
		<category><![CDATA[Google Analytics]]></category>

		<guid isPermaLink="false">http://www.webanalytics.org.cn/?p=228</guid>
		<description><![CDATA[很多网站都使用多个Google Analytics配置文件，但不同配置文件间不能共享目标（Goal）的设定，为此，John Henson开发了一款Firefox的插件，用来在不同配置文件间拷贝和粘贴目标。

在前面的《Google Analytics的新“目标”》文章中提到，Google Analytics已经更新了Goal的设置。为了适应更新后的接口，这个插件也更新了版本，下载请看<a title="Goal Copy" href="http://www.lunametrics.com/blog/2009/11/20/goal-copy-updated-ga-goal-interface-copy-filters/" target="_blank">原文</a>。

在Firefox中<a title="Google Analytics目标拷贝插件" href="http://www.lunametrics.com/goalcopy/goalcopy.xpi" target="_blank">下载该插件</a>，并且完成安装，在工具栏上会出现一排工具按钮。

<img class="alignnone size-full wp-image-229" title="Google Analytics的Goal拷贝插件" src="http://www.webanalytics.org.cn/wp-content/uploads/2009/11/Google-Analytics-Goal-Copy-Plugin.jpg" alt="Google Analytics的Goal拷贝插件" width="480" height="19" />

在已经填写好目标的目标设置页面上，点Copy Goal按钮就可以将当前目标的设置保存起来，再切换到一个新目标的设置页面上，按Paste按钮，这个插件就会自动把存储的内容输入到页面的表单中。]]></description>
			<content:encoded><![CDATA[<p>很多网站都使用多个Google Analytics配置文件，但不同配置文件间不能共享目标（Goal）的设定，为此，John Henson开发了一款Firefox的插件，用来在不同配置文件间拷贝和粘贴目标。</p>
<p>在前面的《<a title="Google Analytics的新“目标”" href="http://www.webanalytics.org.cn/new-google-analytics-goals/" target="_blank">Google Analytics的新“目标”</a>》文章中提到，Google Analytics已经更新了目标的设置。为了适应更新后的接口，这个插件也更新了版本，下载请看<a title="Goal Copy" href="http://www.lunametrics.com/blog/2009/11/20/goal-copy-updated-ga-goal-interface-copy-filters/" target="_blank">原文</a>。</p>
<p>在Firefox中<a title="Google Analytics目标拷贝插件" href="http://www.lunametrics.com/goalcopy/goalcopy.xpi" target="_blank">下载该插件</a>，并且完成安装，在工具栏上会出现一排工具按钮。</p>
<p><img class="alignnone size-full wp-image-229" title="Google Analytics的Goal拷贝插件" src="http://www.webanalytics.org.cn/wp-content/uploads/2009/11/Google-Analytics-Goal-Copy-Plugin.jpg" alt="Google Analytics的Goal拷贝插件" width="480" height="19" /></p>
<p>在已经填写好目标的目标设置页面上，点Copy Goal按钮就可以将当前目标的设置保存起来，再切换到一个新目标的设置页面上，按Paste按钮，这个插件就会自动把存储的内容输入到页面的表单中。</p>
<p><img class="alignnone size-full wp-image-230" title="Goal拷贝插件设置截图" src="http://www.webanalytics.org.cn/wp-content/uploads/2009/11/Goal-Copy-Plugin-Screenshot.jpg" alt="Goal拷贝插件设置截图" width="480" height="422" /></p>
<p>在新版本中还新增了过滤器（Filter）设置拷贝的功能，赶紧试试吧！</p>
<p>注意：这个插件对中文支持不好，Google Analytics中目标和过滤器的名称尽量使用英文。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webanalytics.org.cn/google-analyticsgoal-copy-plugin-updated/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Analytics的新“Advanced Filter”</title>
		<link>http://www.webanalytics.org.cn/google-analytics-advanced-filter/</link>
		<comments>http://www.webanalytics.org.cn/google-analytics-advanced-filter/#comments</comments>
		<pubDate>Fri, 20 Nov 2009 06:37:05 +0000</pubDate>
		<dc:creator>深蓝</dc:creator>
				<category><![CDATA[分析工具]]></category>
		<category><![CDATA[Advanced Filter]]></category>
		<category><![CDATA[Google Analytics]]></category>

		<guid isPermaLink="false">http://www.webanalytics.org.cn/?p=212</guid>
		<description><![CDATA[最近Google Analytics的变化挺大，更新了很多新的功能。前面有一篇文章《Google Analytics的新“目标”》主要讨论Google Analytics对设置目标的改进。同时，Google Analytics也增加了新的功能，方便使用者通过报表获得想要的数据。在表格形式报表的下方，多了“高级过滤器”（Advanced Filter）的链接。

<img class="alignnone size-full wp-image-213" title="Google Analytics高级过滤器" src="http://www.webanalytics.org.cn/wp-content/uploads/2009/11/Google-Analytics-Advanced-Filter.jpg" alt="Google Analytics高级过滤器" width="480" height="101" />]]></description>
			<content:encoded><![CDATA[<p>最近Google Analytics的变化挺大，更新了很多新的功能。前面有一篇文章《<a title="Google Analytics Goals" href="http://www.webanalytics.org.cn/new-google-analytics-goals/" target="_blank">Google Analytics的新“目标</a>”》主要讨论Google Analytics对设置目标的改进。同时，Google Analytics也增加了新的功能，方便使用者通过报表获得想要的数据。在表格形式报表的下方，多了“高级过滤器”（Advanced Filter）的链接。</p>
<p><img class="alignnone size-full wp-image-213" title="Google Analytics高级过滤器" src="http://www.webanalytics.org.cn/wp-content/uploads/2009/11/Google-Analytics-Advanced-Filter.jpg" alt="Google Analytics高级过滤器" width="480" height="101" /></p>
<p>之前，我们只能针对当前报表的维度本身设置条件。比如，在Top Content的报表中，我们只能针对Page设置条件，可以过滤Page中包含了某些字符或者未包含某些字符的数据项。现在，在高级过滤器中，除了Page本身以外，还可以针对和Page的各个度量值设置条件。</p>
<p>比如说，想知道所有的文章页中（我的博客还有分类页、搜索结果页、存档页等等），平均停留时间超过一分钟的有哪些，该如何设置呢？因为我在页面上加入代码的时候，为每个页面设置了一个虚拟标识而不是URL，所以只要包含了Post的页面都是文章页了。设置如下图的条件：</p>
<p><img class="alignnone size-full wp-image-214" title="Google Analytics高级过滤器使用实例" src="http://www.webanalytics.org.cn/wp-content/uploads/2009/11/Google-Analytics-Advanced-Filter-Example.jpg" alt="Google Analytics高级过滤器使用实例" width="480" height="178" /></p>
<p>注意，时间的设置是以秒钟为单位的。设置好之后，点击“Apply Filter”按钮，页面会重新刷新，得到的报表包含的就只有符合条件的项目了。</p>
<p><img class="alignnone size-full wp-image-215" title="Google Analytics Advanced Filter Report" src="http://www.webanalytics.org.cn/wp-content/uploads/2009/11/Google-Analytics-Advanced-Filter-Report.jpg" alt="Google Analytics Advanced Filter Report" width="480" height="283" /></p>
<p>很简单，对吗？以前这个过程我们可能需要把数据下载到Excel中，然后使用Excel的功能来完成。现在只要在报表上设置就可以了，很方便。</p>
<p>另外，在Advanced Filter中还是延续了对正则表达式的支持。比如，想看所有文章中，文章名不超过10个字的文章，同时这些文章的平均浏览时间要超过1分钟。那么只要把上面例子中Page对应的条件设成<span style="color: #000080;"><strong>^\/Post &gt;&gt;.{0,10}$</strong></span>就可以了。</p>
<p>你有什么新发现，赶紧留言，大家一起讨论吧！！</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webanalytics.org.cn/google-analytics-advanced-filter/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Google Analytics的新“目标”</title>
		<link>http://www.webanalytics.org.cn/new-google-analytics-goals/</link>
		<comments>http://www.webanalytics.org.cn/new-google-analytics-goals/#comments</comments>
		<pubDate>Wed, 18 Nov 2009 01:23:01 +0000</pubDate>
		<dc:creator>深蓝</dc:creator>
				<category><![CDATA[分析工具]]></category>
		<category><![CDATA[Goals]]></category>
		<category><![CDATA[Google Analytics]]></category>
		<category><![CDATA[量度]]></category>

		<guid isPermaLink="false">http://www.webanalytics.org.cn/?p=173</guid>
		<description><![CDATA[在所有的免费网站分析工具中，<a title="Google Analytics" href="http://www.google.com/analytics" target="_blank">Google Analytics</a>是我的最爱。最近Google Analytics又推出了一系列的新特性，包括Intelligence、Advanced Table Filters。而已有的目标（Goals）的设置也得到了增强。

在这次更新以前，Google Analytics最多只能设置4个目标。对于一些功能较多的网站来说，区区4个目标显得捉襟见肘。现在，Google Analytics可以允许设置4组，每组5个，总共20个目标。

<img class="alignnone size-full wp-image-175" title="Goals setting" src="http://www.webanalytics.org.cn/wp-content/uploads/2009/11/Goals-setting1.jpg" alt="Goals setting" width="480" height="206" />]]></description>
			<content:encoded><![CDATA[<p>在所有的免费网站分析工具中，<a title="Google Analytics" href="http://www.google.com/analytics" target="_blank">Google Analytics</a>是我的最爱。最近Google Analytics又推出了一系列的新特性，包括Intelligence、Advanced Table Filters。而已有的目标（Goals）的设置也得到了增强。</p>
<p>在这次更新以前，Google Analytics最多只能设置4个目标。对于一些功能较多的网站来说，区区4个目标显得捉襟见肘，为了使用更多的“目标”，为一个网站建立多个配置文件是非常普遍的现象。现在，Google Analytics可以允许设置4组，每组5个，总共20个目标。</p>
<p><img class="alignnone size-full wp-image-175" title="Goals setting" src="http://www.webanalytics.org.cn/wp-content/uploads/2009/11/Goals-setting1.jpg" alt="Goals setting" width="480" height="206" /></p>
<h3>目标的设置</h3>
<p>数量的增加仅仅是一方面，功能上也更加灵活。之前，只能针对某个页面的URL设置目标。也就是说，当用户浏览某个URL的页面时，就计算达成了一次目标。更新以后，在目标的达成上，除了原有的页面URL外，还可以每次访问浏览的页面量和在网站上停留的时间作为判断标准。</p>
<h4>URL目标</h4>
<p>这是Google Analytics传统的目标判定的方式。你可以使用向前匹配、完全匹配和正则表达式来作为判定目标的条件。灵活使用正则表达式能够处理很多复杂的需求。</p>
<p><img class="alignnone size-full wp-image-176" title="URL目标" src="http://www.webanalytics.org.cn/wp-content/uploads/2009/11/URL-Goal.jpg" alt="URL目标" width="480" height="224" /></p>
<h4>网站停留时间</h4>
<p>网页停留时间判断目标达成，是通过设置一个触发条件，当某个访问者在网站上花费了大于某个时间时，则认为达成了目标。这个时间可以设置多少小时多少分多少秒。同时，Google Analytics也可以设置网站停留时间小于某个时间作为目标触发的条件，这时的目标就是负面的目标啦。</p>
<p><img class="alignnone size-full wp-image-177" title="网页停留时间目标" src="http://www.webanalytics.org.cn/wp-content/uploads/2009/11/Time-Spent-Goal.jpg" alt="网页停留时间目标" width="480" height="136" /></p>
<h4>每次访问页面</h4>
<p>每次访问页面是指在一次访问中浏览的页面数，这个浏览量也可以作为目标达成的触发条件。和网站停留时间类似，可以设置在一次访问中访问了大于、等于、小于某个数量作为目标达成的条件。</p>
<p><img class="alignnone size-full wp-image-178" title="网页浏览目标" src="http://www.webanalytics.org.cn/wp-content/uploads/2009/11/Page-View-Goal.jpg" alt="网页浏览目标" width="480" height="427" /></p>
<h3>目标报告</h3>
<p>让我们来看看目标报告吧。</p>
<p><img class="alignnone size-full wp-image-187" title="Google Analytics目标报告" src="http://www.webanalytics.org.cn/wp-content/uploads/2009/11/Google-Analytics-Goal-Report.jpg" alt="Google Analytics目标报告" width="480" height="252" /></p>
<p>注意到“每次访问的目标价值”这个度量了吗？我们在前面设置目标的时候，为达到不同的目标设定了目标价值，在报表中，除了能了解目标达到的次数，还自动计算出了每次访问的价值。有这个度量值，就可以很容易的发现哪些来源的质量更高，或者网站更能吸引哪些地区的访问者等等。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webanalytics.org.cn/new-google-analytics-goals/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>网站分析－分析网页加载时间</title>
		<link>http://www.webanalytics.org.cn/page-loading-time-analysis/</link>
		<comments>http://www.webanalytics.org.cn/page-loading-time-analysis/#comments</comments>
		<pubDate>Mon, 09 Nov 2009 02:15:15 +0000</pubDate>
		<dc:creator>深蓝</dc:creator>
				<category><![CDATA[分析实践]]></category>
		<category><![CDATA[Google Analytics]]></category>
		<category><![CDATA[SiteCatalyst]]></category>
		<category><![CDATA[网站优化]]></category>
		<category><![CDATA[页面加载时间]]></category>

		<guid isPermaLink="false">http://www.webanalytics.org.cn/?p=118</guid>
		<description><![CDATA[<img class="alignleft size-full wp-image-119" title="loading" src="http://www.webanalytics.org.cn/wp-content/uploads/2009/11/loading.gif" alt="loading" width="189" height="189" />Google Analytics是非常好用的网站分析工具，可以跟踪网站的各个维度的数据。其中，Connection Speeds报表，反映了网站访问者的网络连接的情况。通过这个报表，可以了解访问者的网络状况，那么，我们可不可以更进一步，去跟踪访问者的浏览器加载页面的所花费的时间。这样可以更加直接的得到更具参考性的资料。

网页加载时间的数据，可以分析些什么呢？网页加载的时间越长，说明用户连接到服务器的速度越慢。访客一般都是缺乏耐心的，如果5、6秒钟还不能加载页面，他们就开始考虑关闭这个浏览器的窗口了。再细化到不同的地域分析，那么可以考虑在打开速度慢的地方增加镜像服务器。如果各处加载页面都很慢，那就可以看是不是服务器端的接入和本身负载的问题了。

那应该如果做才能跟踪到这个数据呢？]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-119" title="loading" src="http://www.webanalytics.org.cn/wp-content/uploads/2009/11/loading.gif" alt="loading" width="189" height="189" />Google Analytics是非常好用的网站分析工具，可以跟踪网站的各个维度的数据。其中，Connection Speeds报表，反映了网站访问者的网络连接的情况。通过这个报表，可以了解访问者的网络状况，那么，我们可不可以更进一步，去跟踪访问者的浏览器加载页面的所花费的时间。这样可以更加直接的得到更具参考性的资料。</p>
<p>网页加载时间的数据，可以分析些什么呢？网页加载的时间越长，说明用户连接到服务器的速度越慢。访客一般都是缺乏耐心的，如果5、6秒钟还不能加载页面，他们就开始考虑关闭这个浏览器的窗口了。再细化到不同的地域分析，那么可以考虑在打开速度慢的地方增加镜像服务器。如果各处加载页面都很慢，那就可以看是不是服务器端的接入和本身负载的问题了。</p>
<p>那应该如果做才能跟踪到这个数据呢？这需要一点JavaScript的代码。</p>
<p>首先在页面的HTML的头部，记录一个时间：</p>
<p><em><span style="color: #808080;">var date = new Date();<br />
var startstamp = date.getTime();</span></em></p>
<p>然后，在底部，在得到一个时间，两个时间的差值，就是页面打开的时间了：</p>
<p><em><span style="color: #808080;">date = new Date();<br />
var endstamp = date.getTime();<br />
var interval = endstamp &#8211; startstamp;</span></em></p>
<p>我们只需要知道一个大的范围，不用很精确，所以做如下的判断：</p>
<p><em><span style="color: #808080;">var scope;<br />
if(interval&lt;50) {<br />
scope = &#8220;0 &#8211; 50 ms&#8221;;<br />
}<br />
else if(interval &lt; 100) {<br />
scope = &#8220;50 &#8211; 100 ms&#8221;;<br />
}<br />
else if(interval &lt; 200) {<br />
scope = &#8220;100 &#8211; 200 ms&#8221;;<br />
}<br />
else if(interval &lt; 500) {<br />
scope = &#8220;200 &#8211; 500 ms&#8221;;<br />
}<br />
else if(interval &lt; 1000) {<br />
scope = &#8220;500 &#8211; 1000 ms&#8221;;<br />
}<br />
else if(interval &lt; 2000) {<br />
scope = &#8220;1000 &#8211; 2000 ms&#8221;;<br />
}<br />
else {<br />
scope = &#8220;2000+ ms&#8221;;<br />
}</span></em></p>
<p>最后，要用到Google Analytics的_setVar()函数，把值放到User Defined报表中：</p>
<p><em><span style="color: #808080;">pageTracker._setVar(scope);</span></em></p>
<p>如果你在使用Omniture的SiteCatalyst也没有问题，只要建立两个自定义变量来跟踪就可以了：</p>
<p><em><span style="color: #808080;">s.propx＝scope;<br />
s.eVarx=s.propx;</span></em></p>
<p>修改好了，就等着看报表吧：</p>
<p><img class="alignnone size-full wp-image-120" title="page-loading-report" src="http://www.webanalytics.org.cn/wp-content/uploads/2009/11/page-loading-report.jpg" alt="page-loading-report" width="480" height="162" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.webanalytics.org.cn/page-loading-time-analysis/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Google Analytics自定义变量概貌</title>
		<link>http://www.webanalytics.org.cn/google-analytics-custom-variables-overview/</link>
		<comments>http://www.webanalytics.org.cn/google-analytics-custom-variables-overview/#comments</comments>
		<pubDate>Wed, 04 Nov 2009 09:19:07 +0000</pubDate>
		<dc:creator>深蓝</dc:creator>
				<category><![CDATA[分析工具]]></category>
		<category><![CDATA[Google Analytics]]></category>
		<category><![CDATA[自定义]]></category>

		<guid isPermaLink="false">http://www.webanalytics.org.cn/?p=113</guid>
		<description><![CDATA[<h3>User Defined报表</h3>
我想，相当一部分使用过Google Analytics的人，都知道，在后台中有一个“User Defined”报表。与之相对的，在页面上可以使用pageTracker._setVar()这个函数。我们在Google Analytics的其他报表中看到的都是已经定义好的，只有在这里，我们可以自己定义想要跟踪到的维度。这有什么用呢？比如，我们的网站上，有很多的内容或者功能，除了Google Analytics预先定义好的，我们可能还想知道登录用户和未登录用户的行为有什么区别？这时，程序判断用户的登录状态，把登录还是未登录的值填入pageTracker._setVar()函数，就可以使用“User Defined”这个维度来区分这两种用户了。“User Defined”允许自定义，可以让我们可以根据网站的具体情况制定特有的维度，来满足业务分析的需要。
<h3>一个太少</h3>
遗憾的是，Google Analytics只为每个配置文件（Profile）提供了一个“User Defined”的维度。当我们需要定制多个维度来跟踪的时候就会处境尴尬。多建立一些配置文件，可以多得到一个“User Defined”，不过，在页面代码上和配置文件的管理上增加了复杂性，同时，不同的配置文件中定义的维度也无法相互关联，形成分割报表。
现在Google Analytics提供了一个很好的特性来解决这个问题。]]></description>
			<content:encoded><![CDATA[<h3>User Defined报表</h3>
<p>我想，相当一部分使用过Google Analytics的人，都知道，在后台中有一个“User Defined”报表。与之相对的，在页面上可以使用pageTracker._setVar()这个函数。我们在Google Analytics的其他报表中看到的都是已经定义好的，只有在这里，我们可以自己定义想要跟踪到的维度。这有什么用呢？比如，我们的网站上，有很多的内容或者功能，除了Google Analytics预先定义好的，我们可能还想知道登录用户和未登录用户的行为有什么区别？这时，程序判断用户的登录状态，把登录还是未登录的值填入pageTracker._setVar()函数，就可以使用“User Defined”这个维度来区分这两种用户了。“User Defined”允许自定义，可以让我们可以根据网站的具体情况制定特有的维度，来满足业务分析的需要。</p>
<h3>一个太少</h3>
<p>遗憾的是，Google Analytics只为每个配置文件（Profile）提供了一个“User Defined”的维度。当我们需要定制多个维度来跟踪的时候就会处境尴尬。多建立一些配置文件，可以多得到一个“User Defined”，不过，在页面代码上和配置文件的管理上增加了复杂性，同时，不同的配置文件中定义的维度也无法相互关联，形成分割报表。</p>
<h3>Google Analytics新增自定义变量 Custom Variables</h3>
<p>Google新增的这个功能太邪恶了，简直不要一些小的Web Analytics软件的提供商活嘛。我们可以定制一批的自定义变量，这些变量可以根据我们业务的需要分别来干不一样的事情。</p>
<p>比如说，前面提到的登录用户和未登陆用户的区分。再比如：我们现在报表中的网站结构的粒度是具体到每个页面，我们可以看到针对页面这一级别的指标值。如果，我希望了解各个分类下所有页面的PV之和，或者其他指标之和，之前的Google Analytics就无能为力了。我们需要借助Excel等外部工具来完成这个耗神的工作。使用自定义变量，可以方便的解决这个问题。只要在每个页面为一个自定义变量赋上分类的名字，就可以在这个自定义报表中看到各个分类的表现了。</p>
<p>同时，Google Analytics在自定义变量的使用上也提供了非常灵活的设定，这个在后面会讨论。还是那句话，这玩意怎么会免费？</p>
<h3>自定义变量 Custom Variables的用法</h3>
<p>页面中的语法：<br />
_setCustomVar(index, name, value, opt_scope)<br />
index：第几个自定义变量<br />
name：变量的名字<br />
value：变量的值<br />
opt_scope：变量的范围（1：只要是该唯一访客就起效；2：在当次访问中起效；3：只在该页面起效）</p>
<p>按前面提到页面分类跟踪的需求举例：<br />
_setCustomVar(1, &#8220;Category&#8221;, &#8220;News&#8221;, 3)</p>
<p>现在我的帐号Custom Variables还没有激活（不过Intelligence已经激活），以上是参考Google的文档和其他文章完成的。如果你有什么看法，赶紧在下面留言吧！</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webanalytics.org.cn/google-analytics-custom-variables-overview/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Google Analytics中使用Advanced Segments</title>
		<link>http://www.webanalytics.org.cn/using-advanced-segments-of-google-analytics/</link>
		<comments>http://www.webanalytics.org.cn/using-advanced-segments-of-google-analytics/#comments</comments>
		<pubDate>Sun, 25 Oct 2009 09:22:02 +0000</pubDate>
		<dc:creator>深蓝</dc:creator>
				<category><![CDATA[分析工具]]></category>
		<category><![CDATA[Google Analytics]]></category>
		<category><![CDATA[Segments]]></category>

		<guid isPermaLink="false">http://www.webanalytics.org.cn/?p=86</guid>
		<description><![CDATA[<p align="left"><strong>Advanced Segments</strong>可以对元数据按照一定的条件对网站流量进行分组，从而得到整个报表的子报表。Advanced Segments满足许多商业需求。</p>

这其中有一些可能是临时性的需求或者比较小的需求。举个例子，客户看到<strong><a title="Google Analytics" href="http://www.google.com/analytics/" target="_blank">Google Analytics</a></strong>的Length of Visit这个报表。

<img class="alignnone size-full wp-image-87" title="lenght of visit" src="http://www.webanalytics.org.cn/wp-content/uploads/2009/10/re.jpg" alt="lenght of visit" width="480" height="243" />]]></description>
			<content:encoded><![CDATA[<p align="left"><strong>Advanced Segments</strong>可以对元数据按照一定的条件对网站流量进行分组，从而得到整个报表的子报表。Advanced Segments满足许多商业需求。</p>
<p>这其中有一些可能是临时性的需求或者比较小的需求。举个例子，客户看到<strong><a title="Google Analytics" href="http://www.google.com/analytics/" target="_blank">Google Analytics</a></strong>的Length of Visit这个报表。</p>
<p><img class="alignnone size-full wp-image-87" title="lenght of visit" src="http://www.webanalytics.org.cn/wp-content/uploads/2009/10/re.jpg" alt="lenght of visit" width="480" height="243" /></p>
<p align="left">客户会说，哇，只在网站呆了不到1分钟的流量竟然有这么多，不知道这些家伙都在我的网站上干了些什么，我想把不到1分钟的，1分钟到3分钟的，和呆了超过3分钟的放在一起比较，看看都有什么区别，能不能看出些什么。</p>
<p align="left">一般的报表，我们只能知道不同停留时间的访问数是多少，至于在网站上的行为就无从得知了。这时需要借助到Advanced Segments的功能。</p>
<p><span><img class="alignnone size-full wp-image-88" title="segment" src="http://www.webanalytics.org.cn/wp-content/uploads/2009/10/segment.jpg" alt="segment" width="480" height="341" /></span><br />
注意到上图右上角的“Advanced Segments”了吗？点击它，可以增加、删除和修改Advanced Segments。首先增加一个呆了不到一分钟就离开的组。</p>
<p align="left">首先设定条件，将Visit Duration拖拽到“dimension or metric”的位置上，然后选择小于条件，设定小于的值是60，这里单位是秒。取一个容易看明白的名字，在点击Create Segment按钮，就OK了。</p>
<p align="left">同样的，建立一个大于等于1分钟并且小于3分钟的组（注意使用And连接两个条件）和一个大于等于3分钟的组。建立好之后可以在Manage Advanced Segments中看到。</p>
<p align="left"><img class="alignnone size-full wp-image-89" title="advanced segment" src="http://www.webanalytics.org.cn/wp-content/uploads/2009/10/advanced-segment.jpg" alt="advanced segment" width="480" height="330" /></p>
<p align="left">上面是默认的Segments，下面自定义的Segments中可以看到刚刚建立好的三个Segments。这时打开报表，在右上角的Advanced Segments中把这三个Segments都勾选上，一切搞定！！</p>
<p align="left"><img class="alignnone size-full wp-image-90" title="visits" src="http://www.webanalytics.org.cn/wp-content/uploads/2009/10/visits.jpg" alt="visits" width="480" height="115" /></p>
<p align="left">在图中，流量比较大的时间段，是在做广告的推广。而小于1分钟的访客非常明显跟随流量的变化而变化，而1分钟到三分钟和三分钟以上的用户变化很小。这说明广告带来的这些用户绝大部分很快就离开了，广告带来的流量的质量值得怀疑。那么可以从其他报表中来分析原因。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webanalytics.org.cn/using-advanced-segments-of-google-analytics/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>站内搜索的跟踪的意义与实现</title>
		<link>http://www.webanalytics.org.cn/internal-search-tracking/</link>
		<comments>http://www.webanalytics.org.cn/internal-search-tracking/#comments</comments>
		<pubDate>Tue, 20 Oct 2009 14:30:01 +0000</pubDate>
		<dc:creator>深蓝</dc:creator>
				<category><![CDATA[分析实践]]></category>
		<category><![CDATA[Google Analytics]]></category>
		<category><![CDATA[Omniture]]></category>
		<category><![CDATA[SiteCatalyst]]></category>
		<category><![CDATA[站内搜索]]></category>
		<category><![CDATA[网站优化]]></category>

		<guid isPermaLink="false">http://www.webanalytics.org.cn/?p=47</guid>
		<description><![CDATA[<img class="alignleft size-full wp-image-58" title="搜索" src="http://www.webanalytics.org.cn/wp-content/uploads/2009/10/detective.jpg" alt="搜索" width="180" height="180" />大部分网站都提供了站内搜索的功能。站内搜索功能的好坏，影响着用户的体验。特别对一些内容较多，层次复杂的网站来说，即使拥有较好的网站导航设计，也很难保证用户能快速的到达他期望的目标。这时，站内搜索的设计就显得至关重要的。当用户在你的网站中浏览了许多网页，仍然没有找到目标网页，站内搜索经常是挽回用户的手段。用户如果通过站内搜索，能够快速找到想要的东西，他可能还会继续下去；反之，用户很可能就此离开了。我发现，有一些网站，甚至向做电子商务这样的网站，都不重视搜索这样重要的功能，比如只有在首页有一个不显眼的搜索框，在其他页面甚至连搜索框都没有。
站内搜索对网站有哪些意义，我们能做哪些优化呢？]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-58" title="搜索" src="http://www.webanalytics.org.cn/wp-content/uploads/2009/10/detective.jpg" alt="搜索" width="180" height="180" />大部分网站都提供了站内搜索的功能。站内搜索功能的好坏，影响着用户的体验。特别对一些内容较多，层次复杂的网站来说，即使拥有较好的网站导航设计，也很难保证用户能快速的到达他期望的目标。这时，站内搜索的设计就显得至关重要的。当用户在你的网站中浏览了许多网页，仍然没有找到目标网页，站内搜索经常是挽回用户的手段。用户如果通过站内搜索，能够快速找到想要的东西，他可能还会继续下去；反之，用户很可能就此离开了。我发现，有一些网站，甚至向做电子商务这样的网站，都不重视搜索这样重要的功能，比如只有在首页有一个不显眼的搜索框，在其他页面甚至连搜索框都没有。</p>
<h3>站内搜索的分析有些什么意义呢？</h3>
<ol>
<li>
<h4>了解用户需求</h4>
<p>通过对用户搜索的关键字进行分析，可以精确的了解用户的需求。很多网站会精心设计调查问卷，期望了解用户的需要，会通过访问路径来分析用户的心理，那么，用户在站内搜索中输入的关键字这样直接体现用户需求的机会当然不应该忽视。<br />
对于新闻为主的媒体类网站，可以了解到用户关心的热点新闻是哪些？对于某些非常热点的新闻，是不是需要考虑增加不同角度的更多报道，甚至可以制作一个专题。对于电子商务类网站，可以了解用户都喜欢什么样的产品，可以考虑是不是可以在搜索框附近列出这些热门的搜索关键字，对一些用户搜索较多的产品，可以考虑在首页通过Banner、Flash等形式做一些内部的推广，对网站暂时还没有的产品，可以考虑设计生产。</li>
<li>
<h4>站内搜索功能优化</h4>
<p>想象一下，我们现在新开张了一个服装类的电子商务网站，专门在线零售时尚的男女服装。网站上实现了站内搜索的功能，能够对产品名称进行模糊的查询。运营了一段时间，通过分析报告，我们可能会发现，用户很多时候不一定是搜索具体的产品，而是搜索一些服装的风格，比如“百搭”、“可爱”这种关键词。这时因为产品名称中不会包含这类的关键词，会出现没有结果的搜索，那这部分用户很多就可能因为没有找到合适的款式而放弃了购买。<br />
发现了这个情况，我们改良了设计，对产品增加了描述性的语句，在搜索的时候会对描述性的语句进行查询。那么，很多本来没有结果的关键词，因此能够匹配到合适的产品，整个网站的转换也因此有提高。我们再深入分析，也许又会发现，有一些产品，用户浏览了这些产品的产品详细页，了解产品的详情，最后达成购买的比例比较大，而另外一些产品，可能被浏览的次数很多，但是真正销售的情况却不佳。<br />
撇开产品详细页的设计不谈，我们这里也可以针对这些产品的差异，对站内搜索再进一步优化。我们现在站内搜索的排序是按产品名称排序的，很糟糕的排序，对吧？有一些产品，可能只要用户找到它，就比较容易卖出去，却排在了几页以后。我们调整了搜索结果的顺序，越容易卖的产品排在前面。这样，站内搜索对销售的贡献又应该有所增强。</li>
<li>
<h4>SEO和SEM优化</h4>
<p>站内搜索的关键词，对SEO和SEM也有借鉴的意义。用户在网站内部搜索中使用的关键词，反映了用户寻找目标的思路和想法。同样的，在使用搜索引擎的时候，多半也会使用类似的关键词。我们通过分析工具，了解到，一些站内搜索的关键词效果很好，能够带来很多的销售，那么在做SEO和SEM的时候，可以针对这些关键词进行优化。这种有依据的SEO优化和SEM的投入，肯定比盲目的选择有更好的效果。</li>
</ol>
<h3>站内搜索功能如何实现？</h3>
<ol>
<li>
<h4>使用Omniture的SiteCatalyst</h4>
<p>SiteCatalyst默认的报表并没有对站内搜索的支持，不过SiteCatalyst有很强的自定义扩展能力。在SiteCatalyst中，可以在搜索结果页面上设定一个自定义的变量，用来记录搜索的关键词。同时，根据是否有搜索结果触发两个自定义的事件，就可以跟踪到关键词被搜索的情况，以及后续对转换的贡献。</li>
<li>
<h4>使用Google Analytics</h4>
<p>Google Analytics要实现站内搜索的支持，也需要一些设置。<br />
<img class="aligncenter size-full wp-image-56" title="GA站内搜索" src="http://www.webanalytics.org.cn/wp-content/uploads/2009/10/ga.jpg" alt="GA站内搜索" width="460" height="326" /></li>
</ol>
<p>在Google Analytics中后台中，修改配置文件。根据网站的实际情况，设置传递查询关键字的参数。比如在我的这个网站分析博客，使用的是“s”作为参数。只要在对应的地方填入参数，保存后即完成设置。之后只要保证在搜索的结果页面上已经部署了Google Analytics的代码，搜索的关键词就会出现在报告里。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webanalytics.org.cn/internal-search-tracking/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Google Analytics中Visitor Loyalty报表释疑</title>
		<link>http://www.webanalytics.org.cn/visitor-loyalty-in-google-analytics/</link>
		<comments>http://www.webanalytics.org.cn/visitor-loyalty-in-google-analytics/#comments</comments>
		<pubDate>Sat, 17 Oct 2009 13:10:28 +0000</pubDate>
		<dc:creator>深蓝</dc:creator>
				<category><![CDATA[基础知识]]></category>
		<category><![CDATA[Google Analytics]]></category>
		<category><![CDATA[报表解读]]></category>
		<category><![CDATA[访客忠诚度]]></category>

		<guid isPermaLink="false">http://www.webanalytics.org.cn/?p=38</guid>
		<description><![CDATA[<p align="left">Visitor Loyalty报表，反映的是访问者回访次数的情况。</p>
<p align="left"><img class="aligncenter size-full wp-image-39" title="Google Analytics报表" src="http://www.webanalytics.org.cn/wp-content/uploads/2009/10/7.jpg" alt="Google Analytics报表" width="480" height="206" /></p>
<p align="left">从这个报表中，我们可以看到，现在选择的时间段是5月4日到6月3日。那么，报表里的访问次数的数据是不是从这个时间段的开始时间算起的呢？</p>]]></description>
			<content:encoded><![CDATA[<p align="left">Visitor Loyalty报表，反映的是访问者回访次数的情况。</p>
<p align="left"><img class="aligncenter size-full wp-image-39" title="Google Analytics报表" src="http://www.webanalytics.org.cn/wp-content/uploads/2009/10/7.jpg" alt="Google Analytics报表" width="480" height="206" /></p>
<p align="left">从这个报表中，我们可以看到，现在选择的时间段是5月4日到6月3日。那么，报表里的访问次数的数据是不是从这个时间段的开始时间算起的呢？</p>
<p align="left">举个例子，一个访客，在5月2日第一次来到<a title="网站分析" href="http://www.webanalytics.org.cn/" target="_blank">我这个网站</a>，然后在5月3日又回访了一次，过了几天，在5月10日这天，又来网站转了一次。前面两次没有在报表选择的时间段里，我们先不去管它，我们看最后10日的这一次访问。如果报表里访问的次数是从报表选择时间段开始的时间算起，那么，这一次访问应该是5月4日以来的第一次访问。这样的话，1 times这项就会累计一次Visit。真实的情况是不是这样呢？</p>
<p align="left">实际上，Google Analytics的页面脚本会在浏览器上保存一个永久的Cookie。这个Cookie会保存用户的一些信息，这些信息会区别Unique Visitor和记录访问，其中就包括了用户是第几次访问网站。弄清楚这个，就应该明白，第几次访问网站这个数据是不会按照报表的时间段来计算，而是从这个访客第一次访问网站算起的。那么，刚才的那个例子中，实际上Google Analytics会在3 times累计一次。</p>
<p align="left">那报表中选择的时间段不是没有用处了？不是的。报表的时间段，虽然不能对访问次数产生影响，但是它限定了被记录的那次访问的时间段。想象刚才的例子中，现在的时间段会在3 times上累计一次。如果时间段选择在5月1日到6月1日，那么1 times、2 times和3 times都会各累计一次。为什么这样不用我解释了吧：）</p>
<p>如果你认为的我理解不正确，或者有什么补充，赶紧留言告诉我吧！</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webanalytics.org.cn/visitor-loyalty-in-google-analytics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>网站分析的步骤</title>
		<link>http://www.webanalytics.org.cn/steps-of-web-analytics/</link>
		<comments>http://www.webanalytics.org.cn/steps-of-web-analytics/#comments</comments>
		<pubDate>Sat, 17 Oct 2009 12:55:37 +0000</pubDate>
		<dc:creator>深蓝</dc:creator>
				<category><![CDATA[分析实践]]></category>
		<category><![CDATA[Google Analytics]]></category>
		<category><![CDATA[Omniture]]></category>
		<category><![CDATA[步骤]]></category>

		<guid isPermaLink="false">http://www.webanalytics.org.cn/?p=33</guid>
		<description><![CDATA[<p align="left"><strong>1、确定目标</strong>
<img class="alignright size-full wp-image-34" title="目标" src="http://www.webanalytics.org.cn/wp-content/uploads/2009/10/6.jpg" alt="目标" width="150" height="145" />网站分析不能为分析而分析，应该有一个目标。这个分析的目标，就是要明确希望了解哪些方面的情况，希望在哪些方面作出改善。比如，现在很多公司对网站进行分析，最主要的目的是希望了解推广活动（Campaign）的效果，那这就是分析的目标。可以说，这个目标是后续步骤的依据。网站的目标一般是由业务部门提出，体现的是商业的需求。要求分析人员对商务方面有一定了解，同时有较好的同内部和外部用户沟通的能力。]]></description>
			<content:encoded><![CDATA[<p align="left"><strong>1、确定目标</strong><br />
<img class="alignright size-full wp-image-34" title="目标" src="http://www.webanalytics.org.cn/wp-content/uploads/2009/10/6.jpg" alt="目标" width="150" height="145" />网站分析不能为分析而分析，应该有一个目标。这个分析的目标，就是要明确希望了解哪些方面的情况，希望在哪些方面作出改善。比如，现在很多公司对网站进行分析，最主要的目的是希望了解推广活动（Campaign）的效果，那这就是分析的目标。可以说，这个目标是后续步骤的依据。网站的目标一般是由业务部门提出，体现的是商业的需求。要求分析人员对商务方面有一定了解，同时有较好的同内部和外部用户沟通的能力。</p>
<p><strong>2、分析软件的部署实施</strong><br />
网站分析，不是主观的臆断，而是建立在数据基础上的。端一杯茶，对这显示器，想出来的分析报告，很可能是谬误的。我们总设身处地的从用户角度考虑，但其实用户想的很可能与我们不同，我们离网站太近了。而分析软件没有感情、没有偏见、不会说谎，可以让我们更接近事实。现在免费的软件有<a title="Google Analytics" href="http://www.google.com/analytics/" target="_blank">Google Analytics</a>，需要费用的最好的是Omniture的<a title="SiteCatalyst" href="http://www.omniture.com/" target="_blank">SiteCatalyst</a>。通过这些软件，可以采集到用户对网站访问的各种数据，分析软件如何工作可以参考《<a title="脚本型网站分析工具工作原理" href="http://www.webanalytics.org.cn/principle-of-script-web-analytics-tools/" target="_blank">脚本型网站分析软件工作原理</a>》。在实施之前，需要按照确定的目标设定部署的战略。部署了分析软件以后，就可以得到包含各种数据的报表。对分析人员来说，只要是技术方面的要求，在部署和报表以及他们之间的关联很熟悉。</p>
<p align="left"><img class="aligncenter size-full wp-image-36" title="网站分析工具的选择" src="http://www.webanalytics.org.cn/wp-content/uploads/2009/10/51.jpg" alt="网站分析工具的选择" width="480" height="312" /></p>
<p align="left"><strong>3、由定量数据到定性的分析</strong><br />
发现隐藏在数据之后的真相，这应该是最体现分析人员价值的地方。在报表中看到的只是一个一个数字，如何把这些数字关联起来，分析出用户的行为，广告的效果等。这个分析也是围绕着网站分析目标来的。具体如何分析，我会把工作中遇到的问题和得到的体会，在<a title="网站分析" href="http://www.webanalytics.org.cn" target="_blank">后续的文章</a>中和大家分享。需要分析人员，具有很强的分析能力，一定的统计学功底。</p>
<p align="left"><strong>4、发现问题，得出结论，提出意见</strong><br />
把之前定性得到的一个一个小的结果进行综合考量，发现网站中存在问题，或者是得到广告分析的结果等。这是对分析目的的回应。比如，分析投放的几个在线广告，其中哪些广告投资回报率比较高，哪些广告投资回报率比较低。再比如，分析用户的行为，可以得出网站的哪些设计，更符合用户的习惯，用户使用得比较多，而哪些设计是有缺陷的。对此，分析人员要根据得出的结论，提出意见：投资回报率高的哪个广告要追加预算，而这些回报率低的，下一期就不再投了，等等……</p>
<p align="left"><strong>5、改善和跟踪结果</strong><br />
如果网站本身存在问题，分析人员要配合网站设计开发人员进行改善。改善的过程中，可以对拿不准的设计进行测试。最常见的，比如A/B Test。通过对两种设计预案效果的分别跟踪，最终确定使用的方案。同时，也要跟踪改进后的访问情况，对比改进前，整理出改进的效果。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webanalytics.org.cn/steps-of-web-analytics/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>脚本型网站分析工具工作原理</title>
		<link>http://www.webanalytics.org.cn/principle-of-script-web-analytics-tools/</link>
		<comments>http://www.webanalytics.org.cn/principle-of-script-web-analytics-tools/#comments</comments>
		<pubDate>Sat, 17 Oct 2009 10:44:49 +0000</pubDate>
		<dc:creator>深蓝</dc:creator>
				<category><![CDATA[分析工具]]></category>
		<category><![CDATA[Google Analytics]]></category>
		<category><![CDATA[原理]]></category>

		<guid isPermaLink="false">http://www.webanalytics.org.cn/?p=15</guid>
		<description><![CDATA[<p align="left">脚本型网站分析软件，通过插入到页面上的一段JS代码，来抓取用户的访问记录和相关信息。下面以本网站的Google Analytics为例，介绍一下网站分析软件是如何工作的。</p>
<p align="left">首先，需要从Google Analytics得到一段JS代码，然后将这段代码插入到网站每个页面的&#60;/body&#62;标记之前。注意，一定要放在&#60;body&#62;和&#60;/body&#62;之间的区域内，否则Google Analytics不能捕获任何数据。</p>
<p align="left"> <img class="aligncenter size-full wp-image-19" title="GA code" src="http://www.webanalytics.org.cn/wp-content/uploads/2009/10/21.jpg" alt="GA code" width="480" height="180" /></p>]]></description>
			<content:encoded><![CDATA[<p align="left">脚本型网站分析软件，通过插入到页面上的一段JS代码，来抓取用户的访问记录和相关信息。下面以本网站的Google Analytics为例，介绍一下网站分析软件是如何工作的。</p>
<p align="left">首先，需要从Google Analytics得到一段JS代码，然后将这段代码插入到网站每个页面的&lt;/body&gt;标记之前。注意，一定要放在&lt;body&gt;和&lt;/body&gt;之间的区域内，否则Google Analytics不能捕获任何数据。</p>
<p align="left"><img class="aligncenter size-full wp-image-19" title="GA code" src="http://www.webanalytics.org.cn/wp-content/uploads/2009/10/21.jpg" alt="GA code" width="480" height="180" /></p>
<p align="left">正确插入这段代码以后，当用户访问这个网页，那么这段代码就会在用户的浏览器上执行。它会收集当前网页、用户客户端等信息。然后，将这些作为参数，拼接在一个图片请求的后面。这个图片请求是通过HTTP协议发送到Google Analytics的数据收集服务器的。作为这个图片请求的响应，数据收集服务器会返回一个1×1像素的图片在页面上显示。下图是在浏览<a title="网站分析Blog" href="http://www.webanalytics.org.cn" target="_blank"><span id="sample-permalink">www.webanalytics.org.cn</span></a>首页时发送到数据收集服务器的请求。</p>
<p align="left"><img class="aligncenter size-full wp-image-21" title="网络数据包" src="http://www.webanalytics.org.cn/wp-content/uploads/2009/10/41.jpg" alt="网络数据包" width="480" height="180" /></p>
<p align="left">从图中可以看到，有一个数据包发送到Google Analytics的数据收集服务器，通过HTTP协议请求了一个图片，并在图片链接后面加上了一长串的参数。将参数分割出来，有以下一些：<br />
<em>utmwv=4.3</em><em><br />
</em><em>utmn=1196537578</em><em><br />
</em><em>utmhn=www.weblytics.cn</em><em><br />
</em><em>utmcs=UTF-8</em><em><br />
</em><em>utmsr=1024×768</em><em><br />
</em><em>utmsc=32-bit</em><em><br />
</em><em>utmul=en-us</em><em><br />
</em><em>utmje=1</em><em><br />
</em><em>utmfl=10.0 r22</em><em><br />
</em><em>utmdt=</em><em>网站分析工具</em><em> | </em><em>网站分析</em><em><br />
</em><em>utmhid=1766743862</em><em><br />
</em><em>utmr=0</em><em><br />
</em><em>utmp=/?tag=</em><em>网站分析工具</em><em><br />
</em><em>utmac=UA-8982891-1</em><em><br />
</em><em>utmcc=__utma=69577110.67499046715024370.1243733087.1243748047.<br />
1243751471.6;+__utmz=69577110.1243740545.3.4.utmcsr=newsunday.<br />
com|utmccn=(referral)|utmcmd=referral|utmcct=/post/863.html; HTTP/1.1</em></p>
<p align="left">这些参数传递了网站的域名、网页的位置，客户端的浏览器版本、语言、屏幕分辨率颜色深度，访问来源等信息。数据收集服务器接受到这些信息的同时，根据发送来源的IP地址，可以确定用户所在的区域。</p>
<p align="left">当用户访问了网站上的多个页面，就会发送多次这样的数据。Google Analytics就会了解到用户首先访问了A页面，然后访问了B页面，再访问了C页面，最后离开。Google Analytics会将这些访问记录串联起来，形成访问的路径。从而，Google Analytics会得出Entries、Exits、Bounce Rate、Next Pages这些量度来。网站的管理者就可以通过访问Google Analytics的报表界面了解到这些数据。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webanalytics.org.cn/principle-of-script-web-analytics-tools/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>基本量度的讨论</title>
		<link>http://www.webanalytics.org.cn/basic-metrics/</link>
		<comments>http://www.webanalytics.org.cn/basic-metrics/#comments</comments>
		<pubDate>Sat, 17 Oct 2009 09:52:53 +0000</pubDate>
		<dc:creator>深蓝</dc:creator>
				<category><![CDATA[基础知识]]></category>
		<category><![CDATA[Google Analytics]]></category>
		<category><![CDATA[报表解读]]></category>
		<category><![CDATA[指标]]></category>
		<category><![CDATA[计算方式]]></category>
		<category><![CDATA[量度]]></category>

		<guid isPermaLink="false">http://www.webanalytics.org.cn/?p=3</guid>
		<description><![CDATA[<img class="alignleft size-full wp-image-6" title="Metrics" src="http://www.webanalytics.org.cn/wp-content/uploads/2009/10/12.JPG" alt="Metrics" width="300" height="240" />
<p align="left">网站的分析，是以数据的统计为基础的，是对采集到的数据进行比对和分析，得出最后的分析结论。在对数据进行统计和分析的时候，我们需要一组标准，来衡量网站。就好像物理上衡量一个物体的标准有质量、密度、硬度、熔点等等，在网站分析中衡量一个网站或者单个网页的时候，也有一组量度(metric)。下面就以Google Analytics为例介绍一下基本的量度。</p>

<p align="left"><strong>1</strong><strong>、</strong><strong>Pageviews</strong>
Pageviews，缩写PV，就是页面的浏览数。也就是某个页面在浏览器里被打开了一次，这个页面的Pageviews就会增加1。通过链接进入页面、刷新页面、后退进入页面、前进进入页面都会引起Pageviews的增加。]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-6" title="Metrics" src="http://www.webanalytics.org.cn/wp-content/uploads/2009/10/12.JPG" alt="Metrics" width="300" height="240" /></p>
<p align="left">网站的分析，是以数据的统计为基础的，是对采集到的数据进行比对和分析，得出最后的分析结论。在对数据进行统计和分析的时候，我们需要一组标准，来衡量网站。就好像物理上衡量一个物体的标准有质量、密度、硬度、熔点等等，在网站分析中衡量一个网站或者单个网页的时候，也有一组量度(metric)。下面就以Google Analytics为例介绍一下基本的量度。</p>
<p align="left"><strong>1</strong><strong>、</strong><strong>Pageviews</strong><br />
Pageviews，缩写PV，就是页面的浏览数。也就是某个页面在浏览器里被打开了一次，这个页面的Pageviews就会增加1。通过链接进入页面、刷新页面、后退进入页面、前进进入页面都会引起Pageviews的增加。我们在部署GA的时候，会在每个页面中放入一定的代码，而页面每次的刷新都会引起这段代码的执行，这段代码会把收集到的数据发送到GA的服务器。基本上，每次的发送都会算作一次PV。</p>
<p align="left"><strong>2</strong><strong>、</strong><strong>Visits</strong><br />
Visits，是访问数。那么怎么样算是一次访问呢？访问是非常类似于会话的概念，在一个时间跨度内对网站中网页的浏览叫做一次访问。在这个时间跨度之内，不管你看了多少网页，都只累计一次访问。超出了这个时间跨度，再发生了网页的浏览，那么会另外累计一次访问，并开始新的时间跨度。一般的网站分析工具，对这个时间跨度的定义，都是关闭浏览器或者一定的时间内没有操作，很眼熟吧？</p>
<p align="left"><strong>3</strong><strong>、</strong><strong>Absolute Unique Visitor</strong><br />
Absolute Unique Visitor，缩写是UV，是不同的访问者。严格的来讲，是有多少个浏览器客户端，访问了网站。在一个浏览器第一次打开这个网站的时候，页面中的跟踪代码会在持久Cookie中记录，并向信息收集服务器报告有这么一个访问者。只要这个Cookie没有被其他软件删除，那么，在一个报告周期中，这个浏览器不论访问了多少次，浏览了多少页面，访问者始终是一个。Unique Visitor反映的是访问网站的客户端的数目（想象一下一个人既在家用家用电脑也在公司用办公电脑访问网站的情形）。关于这个量度，Avinash Kaushik的文章“<a href="http://www.kaushik.net/avinash/2009/04/standard-metrics-revisited-6-daily-weekly-monthly-unique-visitors.html" target="_blank">Daily, Weekly, Monthly Unique Visitors.</a>”中有详细的论述。</p>
<p align="left"><img class="aligncenter size-full wp-image-7" title="GA reports" src="http://www.webanalytics.org.cn/wp-content/uploads/2009/10/13.JPG" alt="GA reports" width="332" height="274" /></p>
<p align="left"><strong>4</strong><strong>、</strong><strong>Average Pageviews</strong><br />
平均页面浏览数，是指在每次访问（Visit）中，平均有多少个页面被浏览了。也就是说，Average Pageviews = Pageviews / Visits。这个量度是通过两个基本量度计算得到的。平均页面浏览数，可以反映出网站的粘度。一般的来说，这个量度越大，说明网站的结构越清晰，内容越吸引人。如果这个量度接近于1，那么，绝大部分的访问者，到了这个网站，只看了第一页就离开了。要么是内容糟糕透了，访客看了第一眼就不想看第二眼，要么就是网站结构太差，访客找不到继续下去的链接。</p>
<p align="left"><strong>5</strong><strong>、</strong><strong>Time on Site</strong><br />
Time on Site，顾名思义，就是访客在网站上花费的时间（注意是访客而不是一次访问，想想中间的区别）。这个时间是怎么得到的呢？比如，当一个访客在1:00的时候到达了页面1，过了一会，在1:05的时候又到达了页面2，在1:12的时候到了页面3，在页面3上停留了一会，于1：16关闭浏览器结束了访问。那么，数据采集服务器在1:00接收到数据，知道一个访客来了；1:05的时候又收到一次数据，那么1:05-1:00，呵呵，这个访客在网站上呆了5分钟；1:12的时候收到数据，那么这个访客已经呆了12分钟了。但是注意了，用户离开关闭浏览器，并不会发送数据给采集服务器，那么页面3上的停留时间是得不到的。在报表中看到Time on Site这个量度，实际是除了最后一个页面以外，前面所有页面的停留时间。一般的，Time on Site越长，说明网站的粘度越强。不过也有例外，Google就希望Time on Site越短越好，Time on Site越短，说明用户越快找到了他要的网站。</p>
<p align="left"><strong>6</strong><strong>、</strong><strong>Bounce Rate</strong><br />
Bounce Rate，中文是跳出率，一般是用来衡量网站推广效果的一个量度。跳出率也是通过基本量度计算得到的，Bounce Rate = Single Access / Entries。其中，Single Access是指只访问了这个页面就离开的次数，Entries是访问者从这个页面进入网站的次数，也就是说这个页面是这次访问的第一个页面。Single Access、Entries、Bounce Rate都是针对页面的量度。跳出率主要针对首页和登陆页。什么是登陆页呢？登陆页不是登录页，英文叫“Landing Page”，是指广告链接到网站的那一页。首页和登陆页是网站的入口，占据了网站绝大部分的Entries。Bounce Rate是用来衡量广告推广的效果。Bounce Rate越高，说明越多的访客到达第一个网页就离开了，那广告推广的效果就比较差，因为没有多少访客留下来。</p>
<p align="left"><strong>7</strong><strong>、</strong><strong>New Visit</strong><br />
New Visit是统计的新的访问的数量。如何区别新的访问呢？Absolute Unique Visitor那一节，当浏览器中没有Cookie的时候，访问网站，一定时间内就会被认为是新的访问。这个主要用来衡量吸引到新用户的数量。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webanalytics.org.cn/basic-metrics/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
