Google put out an interesting post on the Google Analytics blog today about how to track adjusted bounce rate.
For the record, Google apparently does not use bounce rate as a ranking signal, but that doesnât mean itâs not an important metric to track. However, as Google notes, itâs more useful for some types of sites than for others.
âImagine youâre promoting a blog post that describes all the benefits of your company,âwrites Alexey Petrov from Googleâs Analytics Insights team. âThe visitor might read the whole post and remember your company and products really well â they might even go to search for your product on one of the search engines straight away. However, since the visitor only looked at 1 page (exactly where the blog post is) they will be recorded as bounced visitor.â
âAnother example if you have a description of the product right on the landing page, and your phone number on the same page,â adds Petrov. âThe visitor might study the description and call straight away â again, they will be recorded as a bounced visitor, as only 1 page was viewed. There are many more examples, and even traditional websites may benefit from the method described below as opposed to the standard bounce rate.â
So thatâs where âadjusted bounce rateâ comes in. If you tweak your GA code, you can keep certain visitors from being counted as bounces.
Hereâs the code:
<script type=âtext/javascriptâ>
Petrov has further explanation about how it works on the blog.
For the record, Google apparently does not use bounce rate as a ranking signal, but that doesnât mean itâs not an important metric to track. However, as Google notes, itâs more useful for some types of sites than for others.
âImagine youâre promoting a blog post that describes all the benefits of your company,âwrites Alexey Petrov from Googleâs Analytics Insights team. âThe visitor might read the whole post and remember your company and products really well â they might even go to search for your product on one of the search engines straight away. However, since the visitor only looked at 1 page (exactly where the blog post is) they will be recorded as bounced visitor.â
âAnother example if you have a description of the product right on the landing page, and your phone number on the same page,â adds Petrov. âThe visitor might study the description and call straight away â again, they will be recorded as a bounced visitor, as only 1 page was viewed. There are many more examples, and even traditional websites may benefit from the method described below as opposed to the standard bounce rate.â
So thatâs where âadjusted bounce rateâ comes in. If you tweak your GA code, you can keep certain visitors from being counted as bounces.
Hereâs the code:
<script type=âtext/javascriptâ>
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-XXXXXXX-1']);
_gaq.push(['_trackPageview']);
setTimeout(â_gaq.push(['_trackEvent', '15_seconds', 'read'])â,15000);
(function() {
var ga = document.createElement(âscriptâ); ga.type = âtext/javascriptâ; ga.async = true;
ga.src = (âhttps:â == document.location.protocol ? âhttps://sslâ : âhttp://wwwâ) + â.google-analytics.com/ga.jsâ;
var s = document.getElementsByTagName(âscriptâ)[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
Petrov has further explanation about how it works on the blog.
About the Author:




