Marketing Online Software

  • Subscribe to our RSS feed.
  • Twitter
  • StumbleUpon
  • Reddit
  • Facebook
  • Digg

Thursday, 18 June 2009

Hits, Page Views, Visitors and Visits Demystified

Posted on 14:52 by Unknown
This article is an introductory level and the intention of this article is to clarify few terms that you constantly hear in Web Analytics. Why am I writing this article? I hear some confusion about these terms from people new to field, so I thought I will write this blog post to clarify some of the common terms.

I am going to explain, Hits, Page Views, Visitors and Visits in this blog post.

Hits

Back in the early Internet days, Hits was a term commonly used to measure websites traffic. This term was mainly used by IT folks, early users of web analytics tools, to get an idea of the load on the server. As Web Analytics has moved into marketing and we have move to JavaScript based solutions, this term does not hold much meaning today as terms such as Page Views, Visits and Visitors have taken over.

So what is a Hit anyway? Let’s take an example of a simple web page shown below


This page is an html file with one image embedded in it.

When a person browses to this page (in her internet browser), she is requesting this page from the server to be downloaded to her internet browser. She views this page as one entity. In return browser is actually requesting 2 items from the server
  1. The actual HTML page

  2. The image embedded in it

When server returns these items, the browser assembles them and makes them look like one page to the person browsing this page.

This is what the log file of the server might look like (I have removed several items to make it simple)

291.111.276.23 - - [16/Jun/2007:11:17:55 -0400] "GET /samplepage.html HTTP/1.1" 200 3225 "http://www.anilbatra.com/" "Mozilla/5.0 (Windows; U; Windows NT XP; en-US; rv:1.8.1.7) Gecko/20070914 Firefox/3.0.0.7"

291.111.276.23- - [16/Jun/2007:11:17:55 -0400] "GET /batman.jpg HTTP/1.1" 200 3225 "http://www.anilbatra.com/" "Mozilla/5.0 (Windows; U; Windows XP; en-US; rv:1.8.1.7) Gecko/20070914 Firefox/3.0.0.7"


That means there were 2 hits on the server, one for the html page and one for the image. So with one page request there are 2 HITS (in this example)

All the above items will show up in your analytics reports if
  1. You use log file based solution

  2. You do not filter them out when setting up your reports

If you use a JavaScript solution then the only thing which is tagged (contains the JavaScript code) is the HTML page and that’s the only thing which will show up in the Web Analytics report.

Now let’s take a look at this sample again but this time we will look at the source to make sure there are no items hidden behind the HTML code. Sometimes (read most of the time) there are files that are not visible to the individual but still need to be downloaded from server and count towards the hits.

Here is what the source code looks like:



You will see there are two more files that are embedded in the page. One is a style sheet (stylesheet.css) and the other is a JavaScript (myjavascript.js) file.

So when a user requests this page, a total of 4 files are being requested from the server
  • The actual html page

  • The image embedded in it.

  • The .css file (stylesheet)

  • The .js (JavaScript File)


This is how the log file will look like

291.111.276.23 - - [16/Jun/2007:11:17:55 -0400] "GET /samplepage.html HTTP/1.1" 200 3225 "http://www.anilbatra.com/" "Mozilla/5.0 (Windows; U; Windows NT XP; en-US; rv:1.8.1.7) Gecko/20070914 Firefox/3.0.0.7"

291.111.276.23- - [16/Jun/2007:11:17:55 -0400] "GET /batman.jpg HTTP/1.1" 200 3225 "http://www.anilbatra.com/" "Mozilla/5.0 (Windows; U; Windows XP; en-US; rv:1.8.1.7) Gecko/20070914 Firefox/3.0.0.7"

291.111.276.23- - [16/Jun/2007:11:17:55 -0400] "GET /stylesheet.css HTTP/1.1" 200 3225 "http://www.anilbatra.com/" "Mozilla/5.0 (Windows; U; Windows XP; en-US; rv:1.8.1.7) Gecko/20070914 Firefox/3.0.0.7"

291.111.276.23- - [16/Jun/2007:11:17:55 -0400] "GET /myjavascript.js HTTP/1.1" 200 3225 "http://www.anilbatra.com/" "Mozilla/5.0 (Windows; U; Windows XP; en-US; rv:1.8.1.7) Gecko/20070914 Firefox/3.0.0.7"


If you are counting the Hits then there are 4 Hits on the server. It is evident it does not make a lot of sense to count Hits. Let’s look at what make sense (at least for now).

Page Views

According to Web Analytics Association Standards, “Page is an analyst definable unit of content”. Page Views is the number of times a page (an analyst-definable unit of content) was viewed.

So what does it mean? It means you can define type of file, Module, Flash interaction, PDF etc as a page and when a user views them they can be counted as Page Views.

Let’s use the above example and define a valid page as the files with .html extension only. When using a log file solution we configure the tool to filter out the other types of requests and only count pages with .html extension as valid pages. In a JavaScript based solution, all other types of files mentioned above (except .html in this case, if it has the JavaScript tag) will be automatically excluded from the Page View count.

So how many pages will the analytics report show? One, as there is only one html page. (You can configure your JavaScript based web analytics tool to track other forms of files as page views too but that requires customization).
The one page that is showed in the reports is a page view.

Visitors or Unique Visitors

Visitors or Unique Visitors, sometimes also referred as Unique Users is the number of unique individuals visiting a site. The most common way to identify an individual is via an anonymous cookie. Keep in mind that this is a close estimate of unique visitors and not an exact measure. Here are four examples on how unique visitor count can be wrong

  1. If two people use the same computer and same browser to visit a site, that identifies users by an anonymous cookie, both of them will be counted as one unique visitor since their cookie will be the same.

  2. On the flip side, if one individual uses two different computers to access the same site, the individual will be counted as two unique visitors because the new anonymous cookie will be issued on both the computers and show up as two different cookies in the analytics tool and hence will count them as two different visitors.

  3. If an individual uses the same computer but two different browsers (say IE and Firefox) then the person will be counted as two unique visitors because each browser will have its own cookie.

  4. If the individual visits the site, she will be counted as one visitor. Then if she clears her cookie and then visits the site again, she will be counted as two visitors.


Note: Visitors are calculated over a period of time e.g. day, week, month, year etc. and a visitor count from two periods can not be added together to get a total visitor count. Let’s take the data for following 2 days
Day 1 - 30 visitors
Day 2 – 45 visitors

The total visitors count for day 1 and day 2 is NOT the sum of the visitors count for the two days i.e. it is not 75 (30+ 45). Why?

For simplicity let’s assume that all the visitors who came to the site on day 1 also returned to site on day 2. In that case we will have 30 visitors from day 1 and 15 (45-30) on day 2 as unique between those two days, making the total unique to be 45 for the two day period and NOT 75.

The calculation I showed above has been simplified for this example. My advice is to let the analytics tool do the calculation for you and not sum the visitor count from separate period to come up with the total count of unique visitors.


Visits

Visit is also known as session. Visit starts when a visitor interacts with this site. In most case the interaction is the first page view by the visitor. The visit ends when user does not interact with a site for specified period of time. Most of the web analytics tools set 30 mins of inactivity as the end of the visit, however in most tools it is configurable and you can set it to whatever makes sense for your business.

Unlike, unique visitors, total visits to the site can be summed across time periods to get the total visit count for the period.

Hope this clarifies some of the confusion surrounding these terms.

Questions? Comments?

----------------------------------------------------------------------------
Looking to fill your Web Analytics or Online Marketing position?Post your open jobs on http://www.web-analytics-jobs.com/

Latest Job: Senior Web Analyst at Vml (Kansas City, MO)
----------------------------------------------------------------------------
Site: AnilBatra.com
Twitter: http://twitter.com/anilbatra
----------------------------------------------------------------------------
Have you used Clop.in a URL shortner with real time analytics? http://clop.in
Email ThisBlogThis!Share to XShare to Facebook
Posted in demystified, hits, page views, visitors, visits, web analytics | No comments
Newer Post Older Post Home

0 comments:

Post a Comment

Subscribe to: Post Comments (Atom)

Popular Posts

  • NebuAd’s response to my blog post
    In response to my post on ISP based Behavioral Targeting , I got the following response from NebuAd: Below are a couple of quick points from...
  • 25 Twitter Hashtags Used By Digital Marketing and Analytics Community
    Hashtags (keywords that follow #) are a great way to jump to topic and join the conversation on twitter. Below I have complied a list of 25...
  • Web Analyst Interview: Julien Coquet
    Here is the first of my interviews that I promised in my last post Interview With Web Analysts What is your current position and the name of...
  • XChange, Web Analytics 3.0 and Behavioral Targeting
    I am back from from XChange , a conference organized by Semphoic in Napa last Thursday and Friday. The Conference consisted of many small d...
  • Engagement, is it a metric or an excuse?
    Avinsah Kaushik, posted a blog post stating that “Engagement is not a metrics, it is an excuse” . I beg to differ with Avinash on this one. ...
  • Email Personalization Not Working? Read This.
    I am a big believer in targeting and personalization and have written extensively about it in this blog. However, targeting and personali...
  • Unnecessary Outcry over Adobe CS3 and Omniture Tracking
    On Dec 26th a blog post on Uneasysilence.com showed that when a user launches CS3 suite adobe calls a server on Omniture. According to the a...
  • Web Analytics Jobs Trends – 2007
    Web Analytics is one of the hottest career fields these days. Organizations are realizing that web analytics can no longer be a part time wo...
  • Promotional Codes: Conversion Killers?
    Promotional Codes also know as Promo Codes, Discount Codes, Coupon Codes, Offer codes etc, are supposed to drive sales, right? However they...
  • 5 Reasons To Use Google Experiments
    Google Experiments is an A/B testing tool that is available within Google Analytics interface.  This post is not about what A/B testing is,...

Categories

  • A/B Testing
  • aaron lovelace
  • aberdeen group
  • actionable web analytics
  • adobe
  • Adwords
  • affiliate
  • ajax
  • akamai
  • ama
  • amazon
  • analytics
  • aol
  • ask
  • ask anil batra
  • b
  • bango
  • behavioral targeting
  • bing
  • blog measurement
  • blogs
  • BlueLithium
  • bounce rate
  • career in web analytics
  • cart abondonment
  • clicktracks
  • CMS Watch
  • Competitive Information
  • comscore
  • conference
  • conversion optimization
  • conversions
  • cookies
  • coremetrics
  • data
  • demystified
  • director
  • DMA
  • ebay
  • eCommerce
  • email marketing
  • eMetrics
  • Engagement
  • eric peterson
  • exit ratio
  • facebook
  • Flash
  • freelance
  • FTC
  • FTE
  • gary angel
  • google
  • google ad planner
  • google analytics
  • Google Analytics Filters
  • Google Analytics Tips
  • Google Trends
  • google web history
  • HBX
  • hits
  • homepage
  • IAB
  • IndexTools
  • India
  • interviews
  • iPad
  • iPhone
  • ISP
  • Jupiter Research
  • KPIs
  • landing pages
  • log files
  • marketing books
  • metrics
  • microsoft
  • mobile analytics
  • monthly recap
  • mulichannel
  • multichannel marketing
  • NebuAd
  • news
  • NYtimes
  • offsite analytics
  • OMMA
  • omniture
  • online advertising
  • online marketing
  • optimization
  • oracle
  • page views
  • personas
  • personlization
  • PPC
  • predictions
  • predictions 2007
  • predictions 2008
  • predictions 2009
  • privacy
  • quarterly recap
  • referrers
  • referring domains
  • retargeting
  • Reuters
  • revenue model
  • revenue science
  • search
  • search retargeting
  • SEM
  • seminar
  • SEO
  • shopping cart
  • single page visits
  • social advertising
  • social media
  • social media analytics
  • social networking
  • Speaking Engagement
  • spyware
  • subscription
  • survey
  • tacoda
  • time spent
  • toll free numbers
  • twitter
  • unica
  • unique users
  • url shortener
  • video
  • video analytics
  • visitors
  • visits
  • visual sciences
  • WAA
  • wal-mart
  • WAW Seattle
  • web analytics
  • web analytics education
  • web analytics jobs
  • webcast
  • webinar
  • webtrends
  • widgets
  • widmile
  • Yahoo
  • Yahoo Web Analytics
  • YouTube
  • ZeroDash1

Blog Archive

  • ►  2013 (12)
    • ►  November (2)
    • ►  October (1)
    • ►  August (1)
    • ►  July (1)
    • ►  June (2)
    • ►  May (3)
    • ►  March (1)
    • ►  January (1)
  • ►  2012 (12)
    • ►  October (1)
    • ►  July (1)
    • ►  March (2)
    • ►  February (4)
    • ►  January (4)
  • ►  2011 (14)
    • ►  December (3)
    • ►  November (2)
    • ►  October (1)
    • ►  September (1)
    • ►  March (3)
    • ►  February (3)
    • ►  January (1)
  • ►  2010 (34)
    • ►  December (3)
    • ►  August (5)
    • ►  July (5)
    • ►  June (3)
    • ►  May (2)
    • ►  April (4)
    • ►  March (5)
    • ►  February (4)
    • ►  January (3)
  • ▼  2009 (40)
    • ►  December (1)
    • ►  October (4)
    • ►  September (3)
    • ►  August (4)
    • ►  July (5)
    • ▼  June (4)
      • Social Media Analytics Part I
      • Widemile Optimize: A/B and Multivariate Tool
      • Hits, Page Views, Visitors and Visits Demystified
      • Adding “bing” to Organic Search in Google Analytics
    • ►  May (1)
    • ►  April (6)
    • ►  March (5)
    • ►  February (4)
    • ►  January (3)
  • ►  2008 (89)
    • ►  December (7)
    • ►  November (7)
    • ►  October (6)
    • ►  September (4)
    • ►  August (5)
    • ►  July (5)
    • ►  June (9)
    • ►  May (7)
    • ►  April (6)
    • ►  March (10)
    • ►  February (10)
    • ►  January (13)
  • ►  2007 (112)
    • ►  December (7)
    • ►  November (5)
    • ►  October (8)
    • ►  September (9)
    • ►  August (7)
    • ►  July (11)
    • ►  June (8)
    • ►  May (13)
    • ►  April (18)
    • ►  March (13)
    • ►  February (10)
    • ►  January (3)
  • ►  2006 (12)
    • ►  December (3)
    • ►  November (3)
    • ►  October (1)
    • ►  September (2)
    • ►  August (3)
Powered by Blogger.

About Me

Unknown
View my complete profile