<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: Google Analytics Anomaly: More Visits than Page Views?</title>
	<atom:link href="http://balancedbraces.com/2009/06/04/google-analytics-anomaly-more-visits-than-page-views/feed/" rel="self" type="application/rss+xml" />
	<link>http://balancedbraces.com/2009/06/04/google-analytics-anomaly-more-visits-than-page-views/</link>
	<description>practical PHP and more</description>
	<lastBuildDate>Sun, 04 Jul 2010 12:53:26 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: Spikey</title>
		<link>http://balancedbraces.com/2009/06/04/google-analytics-anomaly-more-visits-than-page-views/#comment-103</link>
		<dc:creator>Spikey</dc:creator>
		<pubDate>Thu, 08 Oct 2009 08:31:15 +0000</pubDate>
		<guid isPermaLink="false">http://balancedbraces.com/?p=45#comment-103</guid>
		<description>Hostname was my initial intuition as well, but never was able to block the ghost visits with it, probably because it adds only transaction data + a visit for each transaction, but no other data like pageviews and hostname, and hence, you&#039;re bound to be unable to use regular filters to block them out.</description>
		<content:encoded><![CDATA[<p>Hostname was my initial intuition as well, but never was able to block the ghost visits with it, probably because it adds only transaction data + a visit for each transaction, but no other data like pageviews and hostname, and hence, you&#8217;re bound to be unable to use regular filters to block them out.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nathan Ziarek</title>
		<link>http://balancedbraces.com/2009/06/04/google-analytics-anomaly-more-visits-than-page-views/#comment-102</link>
		<dc:creator>Nathan Ziarek</dc:creator>
		<pubDate>Thu, 08 Oct 2009 01:27:35 +0000</pubDate>
		<guid isPermaLink="false">http://balancedbraces.com/?p=45#comment-102</guid>
		<description>@Spikey -- Thought about that and had experimented with it pretty thoroughly. It blocked out maybe 90% of the visits, but some still got through. To experiment, I first blocked all hostnames with .*, then worked through each of the ecommerce metrics to combine and see which would block out all of the incoming ghost visits. I never found that did. It is tough to tell if you solution is working or not, but my initial assessment is that it is much better than anything I&#039;d come up with. It&#039;s great having more pageviews than visitors! :)</description>
		<content:encoded><![CDATA[<p>@Spikey &#8212; Thought about that and had experimented with it pretty thoroughly. It blocked out maybe 90% of the visits, but some still got through. To experiment, I first blocked all hostnames with .*, then worked through each of the ecommerce metrics to combine and see which would block out all of the incoming ghost visits. I never found that did. It is tough to tell if you solution is working or not, but my initial assessment is that it is much better than anything I&#8217;d come up with. It&#8217;s great having more pageviews than visitors! <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Spikey</title>
		<link>http://balancedbraces.com/2009/06/04/google-analytics-anomaly-more-visits-than-page-views/#comment-101</link>
		<dc:creator>Spikey</dc:creator>
		<pubDate>Wed, 07 Oct 2009 19:08:09 +0000</pubDate>
		<guid isPermaLink="false">http://balancedbraces.com/?p=45#comment-101</guid>
		<description>Dear Nathan,

You can actually exclude ghost visits in subprofiles resulting from ecommerce tracking in irrelevant OTHER subprofiles by using the filter &#039;exclude Ecommerce ID&#039; or something in that fashion for those profiles, and then entering .* as a regular expression to exclude ALL Ecommerce IDs. This should stop including the ecommerce transaction data from entering a subprofile.

Regards,
Spikey</description>
		<content:encoded><![CDATA[<p>Dear Nathan,</p>
<p>You can actually exclude ghost visits in subprofiles resulting from ecommerce tracking in irrelevant OTHER subprofiles by using the filter &#8216;exclude Ecommerce ID&#8217; or something in that fashion for those profiles, and then entering .* as a regular expression to exclude ALL Ecommerce IDs. This should stop including the ecommerce transaction data from entering a subprofile.</p>
<p>Regards,<br />
Spikey</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nathan Ziarek</title>
		<link>http://balancedbraces.com/2009/06/04/google-analytics-anomaly-more-visits-than-page-views/#comment-100</link>
		<dc:creator>Nathan Ziarek</dc:creator>
		<pubDate>Fri, 02 Oct 2009 15:54:00 +0000</pubDate>
		<guid isPermaLink="false">http://balancedbraces.com/?p=45#comment-100</guid>
		<description>I have a script that automatically tags all &lt;A&gt; with onclick functions to check and see if they need a manual &quot;trackPageview&quot; / &quot;trackEvent&quot; call. Right after I installed this, my sub profiles started getting ridiculous data -- 1,200 visits with 2 pageviews. I stripped everything from the code, leaving it just as Google recommends. Still saw these hugely inflated numbers.

At the same time as I was working on that, we were also working on adding transaction (ecommerce) data to Google Analytics. I never even considered it, since those were pretty much just normal pageviews and the directory filter should have extracted them.

But ... after our ecommerce testing was done, I turned on ecommerce in a &quot;good data&quot; profile and it instantly had all the test data we&#039;d run through. Since GA doesn&#039;t go back and re-process old data, this clued me in to the fact that Spikey might be right. And if each transaction + each product call results in a new &quot;visit&quot; to the subprofile, that&#039;d explain how these numbers shoot up so fast.

Experimenting now...will let you know how it goes.

Thanks Spikey!</description>
		<content:encoded><![CDATA[<p>I have a script that automatically tags all <a> with onclick functions to check and see if they need a manual &#8220;trackPageview&#8221; / &#8220;trackEvent&#8221; call. Right after I installed this, my sub profiles started getting ridiculous data &#8212; 1,200 visits with 2 pageviews. I stripped everything from the code, leaving it just as Google recommends. Still saw these hugely inflated numbers.</p>
<p>At the same time as I was working on that, we were also working on adding transaction (ecommerce) data to Google Analytics. I never even considered it, since those were pretty much just normal pageviews and the directory filter should have extracted them.</p>
<p>But &#8230; after our ecommerce testing was done, I turned on ecommerce in a &#8220;good data&#8221; profile and it instantly had all the test data we&#8217;d run through. Since GA doesn&#8217;t go back and re-process old data, this clued me in to the fact that Spikey might be right. And if each transaction + each product call results in a new &#8220;visit&#8221; to the subprofile, that&#8217;d explain how these numbers shoot up so fast.</p>
<p>Experimenting now&#8230;will let you know how it goes.</p>
<p>Thanks Spikey!</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Spikey</title>
		<link>http://balancedbraces.com/2009/06/04/google-analytics-anomaly-more-visits-than-page-views/#comment-95</link>
		<dc:creator>Spikey</dc:creator>
		<pubDate>Fri, 31 Jul 2009 08:50:28 +0000</pubDate>
		<guid isPermaLink="false">http://balancedbraces.com/?p=45#comment-95</guid>
		<description>For ecommerce ghost visits to not enter subprofiles, you need to filter your profiles differently; remove your regular subprofile filter and replace them with these two:

For a non-ecommerce subprofile www.yoursite.com/whatever

Filter 1:

Filtername: Whatever
Filtertype: Custom filter
select &#039;Advanced&#039;
Field A --&gt; Extract A: -Request URL-  ^/whatever
Field B -&gt; Extract B: -- (leave empty)
Output to -&gt; Constructor: -Custom Field 1-  whatever
Field A required: Y
Field B required: N
Override Output Field: Y
Case Sensitive: N

Filter 2: 

Filtername: Whatever (extract)
Filtertype: Custom filters
select &#039;Include&#039;
Filter Field -Custom Field 1-
Filter Pattern: whatever
Case Sensitive: N

This may also filter subprofile ghostvisits for events, but I can&#039;t check for certain since I don&#039;t use them.</description>
		<content:encoded><![CDATA[<p>For ecommerce ghost visits to not enter subprofiles, you need to filter your profiles differently; remove your regular subprofile filter and replace them with these two:</p>
<p>For a non-ecommerce subprofile <a href="http://www.yoursite.com/whatever" rel="nofollow">http://www.yoursite.com/whatever</a></p>
<p>Filter 1:</p>
<p>Filtername: Whatever<br />
Filtertype: Custom filter<br />
select &#8216;Advanced&#8217;<br />
Field A &#8211;&gt; Extract A: -Request URL-  ^/whatever<br />
Field B -&gt; Extract B: &#8212; (leave empty)<br />
Output to -&gt; Constructor: -Custom Field 1-  whatever<br />
Field A required: Y<br />
Field B required: N<br />
Override Output Field: Y<br />
Case Sensitive: N</p>
<p>Filter 2: </p>
<p>Filtername: Whatever (extract)<br />
Filtertype: Custom filters<br />
select &#8216;Include&#8217;<br />
Filter Field -Custom Field 1-<br />
Filter Pattern: whatever<br />
Case Sensitive: N</p>
<p>This may also filter subprofile ghostvisits for events, but I can&#8217;t check for certain since I don&#8217;t use them.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Spikey</title>
		<link>http://balancedbraces.com/2009/06/04/google-analytics-anomaly-more-visits-than-page-views/#comment-94</link>
		<dc:creator>Spikey</dc:creator>
		<pubDate>Thu, 30 Jul 2009 17:50:18 +0000</pubDate>
		<guid isPermaLink="false">http://balancedbraces.com/?p=45#comment-94</guid>
		<description>This sounds like the exact same problem I&#039;m having. I have about 50 subprofiles on my main profile, and one of the subprofiles has the ecommerce script. Since the launch of the ecommerce script, I noticed zero page visits dripping in on every subprofile, except for the ecommerce profile. All these ghost visits seemed to have an ecommerce success of 100%. That means every ghost visit saw the page with the ecommerce script, which can&#039;t be a coincidence. 

It probably has to do with the transaction variable, which is related to visits instead of clickstream data; transactions are added to every subprofile (even if ecommerce is switched off on those subprofiles), along with the visits that, impossible to filter in any way but with afterwards with advanced segments (with the known tricks of &#039;more than zero pageviews&#039;, &#039;hostname contains www.yoursite.com&#039; etc). The main profile and the ecommerce subprofile seem to remain unaffected, because those visits are already counted there anyway. 

Curiously, two of my profiles with certain advanced filters  don&#039;t have the ghost visits. This is hopeful, I&#039;ll look into that as soon as I can.</description>
		<content:encoded><![CDATA[<p>This sounds like the exact same problem I&#8217;m having. I have about 50 subprofiles on my main profile, and one of the subprofiles has the ecommerce script. Since the launch of the ecommerce script, I noticed zero page visits dripping in on every subprofile, except for the ecommerce profile. All these ghost visits seemed to have an ecommerce success of 100%. That means every ghost visit saw the page with the ecommerce script, which can&#8217;t be a coincidence. </p>
<p>It probably has to do with the transaction variable, which is related to visits instead of clickstream data; transactions are added to every subprofile (even if ecommerce is switched off on those subprofiles), along with the visits that, impossible to filter in any way but with afterwards with advanced segments (with the known tricks of &#8216;more than zero pageviews&#8217;, &#8216;hostname contains <a href="http://www.yoursite.com" rel="nofollow">http://www.yoursite.com</a>&#8216; etc). The main profile and the ecommerce subprofile seem to remain unaffected, because those visits are already counted there anyway. </p>
<p>Curiously, two of my profiles with certain advanced filters  don&#8217;t have the ghost visits. This is hopeful, I&#8217;ll look into that as soon as I can.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dieter</title>
		<link>http://balancedbraces.com/2009/06/04/google-analytics-anomaly-more-visits-than-page-views/#comment-93</link>
		<dc:creator>Dieter</dc:creator>
		<pubDate>Tue, 14 Jul 2009 17:08:16 +0000</pubDate>
		<guid isPermaLink="false">http://balancedbraces.com/?p=45#comment-93</guid>
		<description>no news regarding this ?</description>
		<content:encoded><![CDATA[<p>no news regarding this ?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
