how does google analytics calculate metrics like "average time spent" ? - Stack Overflow most recent 30 from stackoverflow.com2009-12-23T06:24:36Zhttp://stackoverflow.com/feeds/question/968601http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/968601/how-does-google-analytics-calculate-metrics-like-average-time-spent3how does google analytics calculate metrics like "average time spent" ?dotnetcoder2009-06-09T07:08:23Z2009-11-18T18:01:49Z
<p>how services like google analytics calculate parameters like </p>
<p>"<strong>average time spent</strong>"<br />
"number of users that came to the website via search Vs user that hit the <strong>url directly</strong><br />
etc.</p>
<p>I would imagine that google can easily record a HIT when someone clicks on a link in serach result. But after that how long and deep the user is brwosing that perticular website is out of tap...hmmmm ?</p>
http://stackoverflow.com/questions/968601/how-does-google-analytics-calculate-metrics-like-average-time-spent/968628#9686282Answer by Shoban for how does google analytics calculate metrics like "average time spent" ?Shoban2009-06-09T07:17:42Z2009-06-09T07:17:42Z<p>This <a href="http://stackoverflow.com/questions/892049/how-does-google-analytics-collect-its-data">question</a> has some information. As mentioned in that question time should be calculated using an onUnload() event. When the js is loaded firstime the time may be recorded (in cookies)and then onUnload() the time spent is calculated and sent to Google for record. </p>
<p>The above question explains most of your question.</p>
http://stackoverflow.com/questions/968601/how-does-google-analytics-calculate-metrics-like-average-time-spent/1591468#1591468-1Answer by Oct for how does google analytics calculate metrics like "average time spent" ?Oct2009-10-19T22:23:56Z2009-10-19T22:23:56Z<p>With Google Analytics, you are probably tracked on your website and also outside whenever you browse a website outside yours that uses GA (which happens quite frequently). By combining a local cookie along with a Google Cookie, I think this renders possible to follow a visitor "in" and "out" a given website, thus allowing you to compute very precisely how long you stayed on the last page.</p>
<p>Other techniques include using a session cookie that expires after a given delay (say 1 minute) so that if you ever stand still more than one minute on a webpage without doing anything, the cookie expires and GA will know that at next refresh (because he won't find the short lasting cookie but might find a longer running cookie still alive).</p>
<p>It is also possible by using some statistics distribution to attribute a mean "time spent" for a user who has visited a given page as the last one on a website just by computing how long the others users passing by this page have stayed on the site. This probably give slight wrong result for small traffic website but I think this is valid as soon as the number of visitor raises.</p>
<p>Modern website statistics aggregators (AW-Stats, Webalizer) provide that kind of data with no JavaScript hooks.</p>
http://stackoverflow.com/questions/968601/how-does-google-analytics-calculate-metrics-like-average-time-spent/1757911#17579111Answer by tpk for how does google analytics calculate metrics like "average time spent" ?tpk2009-11-18T18:01:49Z2009-11-18T18:01:49Z<p>This thread states quite clearly that there is no unLoad() event: <a href="http://groups.google.com/group/analytics-help-troubleshoot/browse%5Fthread/thread/d142572ddf1fa9dd/38dd640f949e9890?pli=1" rel="nofollow">http://groups.google.com/group/analytics-help-troubleshoot/browse%5Fthread/thread/d142572ddf1fa9dd/38dd640f949e9890?pli=1</a></p>
<p>Also, try going to GA and look for sessions with only 1 pageview - you will see the average page time is 0s, which proves the point.</p>