Principles of Web Analytics

Size: px
Start display at page:

Download "Principles of Web Analytics"

Transcription

1 Barcelona Fall Institute Principles of Web Analytics Hadi Kharrazi MHI MD PhD Johns Hopkins University School of Public Health School of Medicine 1.5 hrs / ~75 slides

2 Overview Web Analytics Basics Basic steps of the web analytics process Web analytics data sources (server log vs page tagging) Web Analytics Definitions Building block terms Visit characterization Content characterization Conversion metrics Sample Web Analytic Platforms List of web analytics software Google Analytics PiWik Open Web Analytics 2

3 Web Analytics Basics

4 Web Analytics Basics Definition Web analytics is the measurement, collection, analysis and reporting of web data for purposes of understanding and optimizing web usage. Web analytics is not just a process for measuring web traffic but can be used as a tool for business and market research, and to assess and improve the effectiveness of a website. Web analytics applications can also help companies measure the results of traditional print or broadcast advertising campaigns. It helps one to estimate how traffic to a website changes after the launch of a new advertising campaign. Web analytics provides information about the number of visitors to a website and the number of page views. It helps gauge traffic and popularity trends which is useful for market research. 4

5 Web Analytics Basics Process (cont.) Most web analytics processes down to four essential stages or steps: o Collection of data: This stage is the collection of the basic, elementary data. Usually, this data is counts of things. o Processing of data into information: This stage usually take counts and make them ratios, although there still may be some counts. The objective of this stage is to take the data and conform it into information, specifically metrics. o Developing KPI: This stage focuses on using the ratios (and counts) and infusing them with business strategies, referred to as Key Performance Indicators (KPI). Often KPIs deal with conversion aspects, but not always. o Formulating online strategy: This stage is concerned with the online goals, objectives, and standards for the organization or business. These strategies are usually related to making money, saving money, or increasing marketshare. Each stage impacts or can impact (i.e., drives) the stage preceding or following it. So, sometimes the data that is available for collection impacts the online strategy. Other times, the online strategy affects the data collected. 5

6 Web Analytics Basics Process (cont.) Basic Steps of Web Analytics Process 6

7 Web Analytics Basics Process (cont.) New perspectives in Web Analytics (2.0) 7

8 Web Analytics Basics Process (cont.) Mind-set evolution mandated by Web Analytics 2.0 8

9 Web Analytics Basics Process (cont.) The Web Analytics 2.0 Multiplicity strategy and tools 9

10 Web Analytics Basics Types of Web Analytics Off-site web analytics refers to web measurement and analysis regardless of whether you own or maintain a website. It includes the measurement of a website's potential audience (opportunity), share of voice (visibility), and buzz (comments) that is happening on the Internet as a whole. On-site web analytics, the most common, measure a visitor s behavior once on your website. This includes its drivers and conversions; for example, the degree to which different landing pages are associated with online purchases. This data is typically compared against key performance indicators for performance, and used to improve a website or marketing campaign's audience response. Google Analytics is the most widely used on-site web analytics service; although new tools are emerging that provide additional layers of information, including heat maps and session replay. Historically, web analytics has been used to refer to on-site visitor measurement. However, this meaning has become blurred, mainly because vendors are producing tools that span both categories. 10

11 Web Analytics Basics Data Sources Server Side (Website) There are two main technical ways of collecting the data: Web Server Log Files: The first and traditional method, server log file analysis, reads the log-files in which the web server records file requests by browsers. Server Logs Page Tags (JS): The second method, page tagging, uses JavaScript embedded in the webpage to make image requests to a thirdparty analytics-dedicated server, whenever a webpage is rendered by a web browser or, if desired, when a mouse click occurs. HTTP request HTML file Page Tags Cookies Client Side (Browsers) IP and GoeCode DBs 11

12 Web Analytics Basics Data Sources (cont.) Web Server Logs In the early 1990s, website statistics consisted primarily of counting the number of client requests (or hits) made to the web server. This was a reasonable method initially, since each website often consisted of a single HTML file. However, with the introduction of images in HTML, and websites that spanned multiple HTML files, this count became less useful. Two units of measure were introduced in the mid-1990s to gauge more accurately the amount of human activity on web servers. These were page views and visits (or sessions). A page view was defined as a request made to the web server for a page, as opposed to a graphic, while a visit was defined as a sequence of requests from a uniquely identified client that expired after a certain amount of inactivity, usually 30 minutes. The extensive use of web caches also presented a problem for log file analysis. If a person revisits a page, the second request will often be retrieved from the browser's cache, and so no request will be received by the web server. This means that the person's path through the site is lost. 12

13 Web Analytics Basics Data Sources (cont.) Web Server Log Format A server log is a log file (or several files) automatically created and maintained by a server consisting of a list of activities it performed. A typical example is a web server log which maintains a history of page requests. The W3C maintains a standard format (the Common Log Format) for web server log files, but other proprietary formats exist. More recent entries are typically appended to the end of the file. Information about the request, including client IP address, request date/time, page requested, HTTP code, bytes served, user agent, and referrer are typically added. This data can be combined into a single file, or separated into distinct logs, such as an access log, error log, or referrer log. However, server logs typically do not collect user-specific information. These files are usually not accessible to general Internet users, only to the webmaster or other administrative person. A statistical analysis of the server log may be used to examine traffic patterns by time of day, day of week, referrer, or user agent. 13

14 Web Analytics Basics Data Sources (cont.) user-identifier frank [10/Oct/2000:13:55: ] "GET /apache_pb.gif HTTP/1.0" o o o o o o o is the IP address of the client (remote host) which made server request user-identifier is the RFC 1413 identity of the client frank is the userid of the person requesting the document [10/Oct/2000:13:55: ] is the date, time, and time zone when the server finished processing the request, by default in strftime format %d/%b/%y:%h:%m:%s %z "GET /apache_pb.gif HTTP/1.0" is the request line from the client. The method GET, /apache_pb.gif the resource requested, and HTTP/1.0 the HTTP protocol. 200 is the HTTP status code returned to the client. 2xx is a successful response, 3xx a redirection, 4xx a client error, and 5xx a server error 2326 is the size of the object returned to the client, measured in bytes One line of a Web Server Log (Common Log Format) For the extended format see: 14

15 Web Analytics Basics Data Sources (cont.) Sample Web Server Log (Windows IIS) 15

16 Web Analytics Basics Data Sources (cont.) Web Server Logs Advantages o o o o o The web server normally already produces log files, so the raw data is already available. No changes to the website are required. The data is on the company's own servers, and is in a standard format. This makes it easy for a company to switch programs later, use several different programs, and analyze historical data with a new program. Logfiles contain information on visits from search engine spiders, which generally do not execute JavaScript on a page and are therefore not recorded by page tagging. Although these should not be reported as part of the human activity, it is useful information for search engine optimization. Logfiles require no additional DNS lookups or TCP slow starts. Thus there are no external server calls which can slow page load speeds. The web server reliably records every transaction it makes, e.g. serving PDF documents and content generated by scripts, and does not rely on the visitors' browsers cooperating. 16

17 Web Analytics Basics Data Sources (cont.) Page Tagging In the mid-1990s, Web counters were commonly seen these were images included in a web page that showed the number of times the image had been requested. In the late 1990s this concept evolved to include a small invisible image instead of a visible one, and, by using JavaScript, to pass along with the image request certain information about the page and the visitor. The web analytics service also manages the process of assigning a cookie to the user, which can identify them during their visit and in subsequent visits. Collecting website data using a third-party data collection server requires an additional DNS look-up by the user's computer to determine the IP address of the collection server. On occasion, delays in completing a successful or failed DNS look-ups may result in data not being collected. With the increasing popularity of Ajax-based solutions, an alternative to the invisible images is to implement a direct call back to the server from the page. 17

18 Web Analytics Basics Data Sources (cont.) Sample Page Tagging Script (JS) 18

19 Web Analytics Basics Data Sources (cont.) Page Tagging Advantages o o o o o o Counting is activated by opening the page (given that the web client runs the tag scripts), not requesting it from the server. If a page is cached, it will not be counted by the server. Cached pages can account for up to one-third of all page views. Data is gathered via a component ("tag") in the page, usually written in JavaScript or Flash. Ajax can also be used in conjunction with a server-side scripting language (such as PHP) to manipulate and (usually) store it in a database. The script may have access to additional information on the web client or on the user, not sent in the query, such as visitors' screen sizes and the price of the goods they purchased. Page tagging can report on events which do not involve a request to the web server, such as interactions within Flash movies, form completion, and mouse events. The page tagging service manages the process of assigning cookies to visitors Page tagging is available to companies who do not have access to their own web servers. 19

20 Web Analytics Definitions

21 Web Analytics Scenario Home About News Legal Blog Register Inter A Inter B Inter C Search Engines and Other Websites Confirm Success Web Directory / Map of a Hypothetical Website 21

22 Web Analytics Scenario (cont.) Home Home About Blog Legal Home Contact Home News Contact Register Confirm Success Google Register Confirm Success Hypothetical click paths 22

23 Web Analytics Scenario (cont.) Home About Blog Legal Home Contact Home News Contact Register Confirm Success Home Google Register Confirm Success Home Home Home Time start Time end User 1 User 2 User 1 User 3 User 2 User 1 User 1 Hypothetical user sessions 23

24 Building Block Terms Page Definition: A page is an analyst definable unit of content. Description: Most web analytics tools allow the client to specify what types of files or requests qualify as a page. Certain technologies including (but not limited to) Flash, AJAX, media files, downloads, documents, and PDFs do not follow the typical page paradigm but may be definable as pages (and their access counted as a page view) in specific tools. page Home About Blog Legal Home Contact 24

25 Building Block Terms Hits Definition: A request for a file from the web server. Description: Available only in log analysis. The number of hits received by a website is frequently cited to assert its popularity, but this number is extremely misleading and dramatically overestimates popularity. A single web-page typically consists of multiple (often dozens) of discrete files, each of which is counted as a hit as the page is downloaded, so the number of hits is really an arbitrary number more reflective of the complexity of individual pages on the website than the website's actual popularity. The total number of visits or page views provides a more accurate assessment of popularity. Home Home 3 hits for one page 9 hits for one page 25

26 Building Block Terms Page Views Definition: The number of times a page (an analyst-definable unit) was viewed. Description: Most web analytics tools allow the client to specify what types of files or requests qualify as a page. Certain technologies including (but not limited to) Flash, AJAX, media files, downloads, documents, and PDFs do not follow the typical page paradigm but may be definable as pages in specific tools. Content, such as XML feeds (RSS or Atom) and s that can be delivered to both web browsers and non-browser clients are not typically counted as page views. Home One page view 26

27 Building Block Terms Visits/Sessions Definition: 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 (e.g., 30 mins) the visit session will terminate. Description: Sessions are most commonly referred to as Visits. Sessions are usually a collection of requests from someone who is on your website. Different tool providers use different methodologies to track sessions. Home visit / session less than x minutes Google Register Confirm Success Home About Blog Legal Home Contact Home Time start Time end User 1 User 1 User 1 User 1 27

28 Building Block Terms Total Visits/Sessions Definition: Total visits is the count of all the sessions during a given time period. Description: Here s how it works: 1) If you use a JavaScript tag solution, when someone requests the first page or item from your website, then your analytics tool starts a session for that person from that browser. 2) Each additional request from that person is attached to a unique session ID. 3) When the person leaves your site, that unique session ID is used to stitch together the pages viewed into one cohesive visit. 4) When you run a report for any given period in your web analytics tools, Total Visits is the count of all the sessions during a given time period. Home Home Home Home Time start total visits/sessions Time end User 1 User 1 User 1 User 1 28

29 Building Block Terms Total Visits/Sessions (cont.) In most modern web analytics tools, a session, or visit, is defined as lasting from the first request to the last request. If the person simply leaves the browser open and walks away, then the session is proactively terminated after 29 minutes of inactivity. Please check with your web analytics vendor to learn what sessions are called in your tool. 29

30 Building Block Terms Unique Visitors Definition: 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. Description: Authentication is the most accurate way to track unique visitors. Most sites do not require a user login, thus the most predominant method of identifying unique visitors is via a persistent cookie that stores and returns a unique id value. A unique visitor count is always associated with a time period (most often day, week, or month). Total unique visitors = 7 Unique = 2 Unique = 2 Unique = 2 Unique = 1 Time start User 1 User 2 User 1 User 3 User 2 User 1 User 1 User 1 User 2 User 1 User 3 User 2 User 1 User 1 Time end Total unique visitors = 3 30

31 Building Block Terms Unique Visitors (cont.) The deletion of cookies, whether 1st party or 3rd party, will cause unique visitors to be inflated over the actual number of people visiting the site. Users that block cookies may or may not be counted as unique visitors, and this metric is handled in different ways depending on the analytics tool used. Ask your tool provider how blocked cookies are managed in their tool. Absolute Unique Visitors is a metric as a proxy for how unique visitors should be computed correctly, regardless of the selected time period. 31

32 Building Block Terms New Visitor Definition: The number of Unique Visitors with activity including a first-ever Visit to a site during a reporting period. Description: Each individual is counted only once in the reporting period. A visitor can only be counted as a new visitor if it is the first time to your site. This is helpful in determining the overall loyalty and affinity of visitors to the site. Also, the new visitor behavior is helpful in determining the difference between how new and presumably unfamiliar visitors utilize a website versus the usage habits of experienced visitors. It is not possible for a Visitor be counted as both a New Visitor and Return Visitor in the same reporting period. Some tool providers may define new visitors differently. Total new visitors = 6 New = 2 New = 2 New = 1 New = 1 Time start User 1 User 2 User 1 User 3 User 1 User 1 User 3 User 1 User 2 User 1 User 3 User 1 User 1 User 3 Time end New visitors = 3 32

33 Building Block Terms Repeat Visitor Definition: The number of Unique Visitors with activity consisting of two or more Visits to a site during a reporting period. Description: Repeat Visitors is the measure of the amount of Visit activity during a reporting period. It is possible for a visitor to be counted as both New and Repeat or both Return and Repeat during a reporting period. It is not possible for a Visitor be counted as both New and Return in the same reporting period. For example, during a reporting period of one day, if a Visitor has their first ever visit in the morning and then a second visit in the afternoon the Visitor would be counted as New and Repeat but not Return. Total repeat visitors = 1 Repeat = 0 Repeat = 0 Repeat = 1 Repeat=0 Time start User 1 User 2 User 1 User 3 User 1 User 1 User 3 User 1 User 2 User 1 User 3 User 1 User 1 User 3 Time end Repeat visitors = 2 33

34 Building Block Terms Return Visitor Definition: The number of Unique Visitors with a Visit to a site during a reporting period where the Unique Visitor also Visited the site prior to the reporting period. Description: Each individual is counted only once in the reporting period. The return visitor metric, when compared with the new visitor metric, is helpful in determining the overall loyalty and affinity of visitors to the site being analyzed. It is not possible for a Visitor be counted as both a New Visitor and Return Visitor in the same reporting period. Total return visitors = 3 NA Return = 1 Return = 1 Return=1 Time start User 1 User 2 User 1 User 3 User 1 User 3 User 1 User 2 User 1 User 3 User 1 User 3 Time end NA Return visitors = 1 34

35 Visit Characterization Page Definition: The first page of a visit. Description: page is the first page in the visit regardless of how the sessions are calculated; different sessionization methods may give different results. page is typically presented as a list of URLs or their page titles, showing the top entry pages and the number of visits for which each was an entry. Because each visit contains at least one page, the total number of entry pages equals the total number of visits for any given time frame. page should not be equated or confused with landing page. Home = 6; Register = 1; Others = 0 Home About Blog Legal Home Contact Home News Contact Register Confirm Success Home Google Register Confirm Success Time start Home Home Home Time end 35

36 Visit Characterization Landing Page Definition: A page intended to identify the beginning of the user experience resulting from a defined marketing effort. Description: Landing pages are often optimized for specific keywords, audiences, or calls to action. A landing page is not necessarily an entry page although it could be. A useful metric may be number of landing pages per session which indicates the degree that visitors move on and off a website. Typically Landing Page is used in on-line marketing channels to describe the call to action of an advertisement. In some situations, it may be appropriate to limit landing pages to only those pages with an external referrer. Register = 1; No other landing page Home About Blog Legal Home Contact Home News Contact Register Confirm Success Home Google Register Confirm Success Time start Home Home Home Time end 36

37 Visit Characterization Page Definition: The last page on a site accessed during a visit, signifying the end of a visit/session. Description: In a tabbed or multi-window browser environment it should still be the final page accessed that is recorded as the Page though it cannot be definitively known that this was the last page the visitor viewed. Because each visit contains at least one page, the total number of exit pages equals the total number of completed visits for any given time frame. The use of cookies to track visit sessions or another reliable visit session method is necessary to accurately track this measure. Home = 4; Success = 2; Contact = 1; Others = 0 Home About Blog Legal Home Contact Home News Contact Register Confirm Success Home Google Register Confirm Success Time start Home Home Home Time end 37

38 Visit Characterization Visit Duration Definition: 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. Description: When there is only one piece of activity in a session (a single-page visit or single-event visit), no visit duration is typically reported. 2 min 1 min 9 min 1 min 1 min 3 min 00:00 00:02 00:03 00:12 00:13 00:14 00:17 Home About Blog Legal Home Contact Total visit duration for this session = 17 min 38

39 Visit Characterization Referrer Definition: The referrer is the page URL that originally generated the request for the current page view or object. Description: The referrer is a field in the request header from a client. Most of the time the referrer is the value of this field. Also the original link may be redirected to another URL one or more times. Typically the redirecting server will maintain the original referrer so that rendered page will have the referrer URL of the page that started the sequence of requests. Each hit to a website has a referrer. However there are several situations where the referrer value is empty or null. Some user agents such as clients or news readers may not set the referrer value in the request header. For browser user-agents, an empty referral string usually indicates that the user either directly entered the URL or selected from a list of bookmarks. These are often reported as "No Referrer". In the case when the visitor is coming from outside the website, the referrer value is the only way of determining where the visitor came from or who referred the visitor to the website. Furthermore the referrer URL may be accompanied by parameters that convey additional important information (e.g., keywords). Specific Referrer Types: Internal Referrer, External Referrer, Search Referrer, Visit Referrer (first referrer in a visit), Original Referrer (first referrer in the first visit) 39

40 Visit Characterization Referrer (cont.) Home About Blog Legal Home Contact Internal Referrer: Home = 2; About = 1; Blog = 1; Legal = 1; Contact = 0 Another site Home About Blog Legal Home Contact External Referrer: Another site Google Home About Blog Legal Home Contact Search Referrer: Google 40

41 Visit Characterization Click-through Definition: Number of times a link was clicked by a visitor. Description: Click-throughs are typically associated with advertising activities, whether external or internal to the site. Note that click-throughs measured on the sending side (as reported by your ad server, for example) and on the receiving side (as reported by your web analytics tool) often do not match. Minor discrepancies are normal, but large discrepancies may require investigation. Click-through Rate/Ratio: The number of click-throughs for a specific link divided by the number of times that link was viewed. Another site Home Home Home About Blog Legal Home Contact Google Register Confirm Success Home News Contact Register Confirm Success 41

42 Content Characterization Page Ratio Definition: Number of exits from a page divided by total number of page views of it. Description: Page exit ratio should not be confused with bounce rate, which is an indicator of single-page-view visits on your site. Page exit ratio applies to all visits regardless of length. Be aware that some tools may calculate page exit ratio using visits in the denominator instead of page views. Page view count is a more appropriate denominator because a visitor may travel through the same page multiple times in a visit. On paper, this metric is supposed to show the leakage from your website. Home = 4/7 = 57%; Contact = 1/2 = 50%; Success = 2/2 = 100%; Others = 0/x = 0% Home About Blog Legal Home Contact Home News Contact Register Confirm Success Home Google Register Confirm Success Time start Home Home Home Time end 42

43 Content Characterization Single Page Visits Definition: Visits that consist of one page regardless of the number of times the page was viewed. Description: For a single-page visit, the entry page and exit page are the same page. Single-page visits should not be equated or confused with single page view visits. Home Home = 1 Home Home Home Home = 1 43

44 Content Characterization Single Page View Visits (Bounces) Definition: Visits that consist of one page-view. Description: Just as for a single-page visit, the entry page and exit page are the same page. Single page view visits should not be equated or confused with single page visits. Home Home = 1 Home Home Home Home = 0 44

45 Content Characterization Bounce Rate Definition: Single page view visits divided by entry pages. Description: If bounce rate is being calculated for a specific page, then it is the number of times that page was a single page view visit divided by the number of times that page was an entry. If bounce rate is calculated for a group of pages, then it is the number of times pages in that group was a single page view visit divided by the number of times pages in that group were entry pages. Measure Bounce Rate for your search keywords (paid and organic). Perhaps you are optimized for the wrong keywords, or perhaps your landing pages stink; either way, you need to fix them. Home = 4/6 = 66%; Register = 0/1 = 0%; Others = 0/x = 0% Home About Blog Legal Home Contact Home News Contact Register Confirm Success Home Google Register Confirm Success Time start Home Home Home Time end 45

46 Content Characterization Bounce Rate (cont.) Blogs are a unique beast amongst online experiences: people mostly come only to read your latest post. They ll read it, and then they ll leave. Your bounce rates will be high because of how that metric is computed, and in this scenario that is OK. So, don t measure the Bounce Rate for a blog in aggregate. Segment your data, and measure Bounce Rate for your New Visitors. You don t want them to just come and leave after reading the post. You want them to subscribe to your RSS feed. (That s one click! No bounce!) You want them to read your About page (and be impressed with your magnificence and come to the site again). You want them to click ads (heavens!), and so on. All these actions are of business value to you. 46

47 Conversion Metrics Event Definition: Any logged or recorded action that has a specific date and time assigned to it by either the browser or server. Description: The occurrence of an event can be counted in three ways: (1) Event Each occurrence of the event is counted. (2) Visit Each visit where the event occurs at least once is counted. (3) Visitor Each unique visitor that executed the event at least once is counted. These counts are always associated within designated reporting timeframes such as an hour, day, week or month. These counts can be performed for any event. These can be page views, page events such as page load and unload, starting and completing transactions, clicks, ad impressions, and visitor state changes. These counts can also be applied to any conversion, since conversions are a type of event. When event counts are displayed, the report must make clear the method of counting (Event, Visit, or Visitor) and the time interval of the count aggregate. When all three count methods are displayed for the same time period, it should always be true that event count >= visit count >= visitor count. The differences in the counts reflect that an event can occur multiple times within a visit and a visitor can have multiple visits within a given time period. 47

48 Conversion Metrics Conversion Definition: A visitor completing a target action (outcome). Description: This is a method of segmenting behavior as visitors interact with a web property. The event represents a transition in the visitor state that may indicate 1) potential for future behavior such as clicking on an advertisement or registering for more information; or 2) completion of a goal milestone event such as completing a purchase on-line. The latter (2) are sometimes designated as target or goal conversions, and the former (1) are sometimes referred to as step, support, mini, or micro conversions. A conversion can be viewed and counted as any other event. In addition, conversions provide a general framework for segmenting visits or visitors and attributing various marketing activity and visitor actions to these segments. They provide the marketer an additional tool for segmenting visitors other than demographics. In practice the two approaches work together to understand the visitor and their on and off line behavior with respect to various marketing activities. The best conversions indicate that a visitor has successfully completed an objective of the site or business. Conversion Rate, expressed as a percentage, is defined as Outcomes divided by Unique Visitors (or Visits). Key Performance Indicators (KPIs): is a metric that helps you understand how you are doing against your objectives. 48

49 Conversion Metrics Conversion (cont.) 49

50 Conversion Metrics Cohorts Definition: Cohorts are groups of customers that have a common characteristic within a specified time period, usually day, week, or month. Preceding concepts, like segmentation or simple data events, can be used to define cohorts, but a common cohort characteristic is the date a person started using a product. Description: Cohort analysis is helpful in tracking two important product metrics at a high-level: engagement and retention. Pairing a useful cohort characteristic, like start date, with one of your key performance indicator metrics is a powerful way to make sure each new cohort group is staying engaged. 50

51 Conversion Metrics User Behaviors The difference between accuracy and precision 51

52 Conversion Metrics User Behaviors (cont.) Nonlinear customer behavior scenarios 52

53 Conversion Metrics User Behaviors (cont.) How automated behavior targeting works 53

54 Conversion Metrics User Behaviors (cont.) Offline marketing controlled experiment 54

55 Conversion Metrics User Behaviors (cont.) Multitouch campaign exposures prior to Conversion 55

56 Conversion Metrics User Behaviors (cont.) Click-path Analysis 56

57 Sample Web Analytics Platforms

58 Sample Web Analytics Platforms Self-hosted Free / Open Source Web Analytics Software 58

59 Sample Web Analytics Platforms Self-hosted (cont.) Proprietary Web Analytics Software 59

60 Sample Web Analytics Platforms Software as a Service (SaaS) Hosted Web Analytics Services 60

61 Sample Web Analytics Platforms Google Analytics Google Analytics is a freemium web analytics service offered by Google that tracks and reports website traffic. Google launched the service in November 2005 after acquiring Urchin. Google Analytics is now the most widely used web analytics service on the Internet. Google Analytics is offered also in two additional versions: a subscription based Google Analytics Premium targeted at enterprise users and Google Analytics for Mobile Apps, an SDK that gathers usage data from ios and Android Apps. The newer version of Google Analytics tracking code is known as the asynchronous tracking code, which is significantly more sensitive and accurate, and is able to track even very short activities on the website. Google Analytics' approach is to show high-level, dashboard-type data for the casual user, and more in-depth data further into the report set. Google Analytics analysis can identify poorly performing pages with techniques such as funnel visualization.

62 Sample Web Analytics Platforms Google Analytics (cont.) Google Analytics - Functions

63 Sample Web Analytics Platforms Google Analytics (cont.) New Users Users Sessions Session by Browser Avg. Session Duration Bounce Rate Goal Completion Revenue Google Analytics - Dashboard

64 Sample Web Analytics Platforms Google Analytics (cont.) Google Analytics - Dashboard

65 Sample Web Analytics Platforms Google Analytics (cont.) Google Analytics Real-time Analysis

66 Sample Web Analytics Platforms Google Analytics (cont.) Google Analytics Mobile App

67 Sample Web Analytics Platforms Google Analytics (cont.) Google Analytics Path Analysis

68 Sample Web Analytics Platforms Piwik Piwik is a free and open source web analytics application written by a team of international developers that runs on a PHP/MySQL webserver. Piwik was released in late 2007 as a replacement for phpmyvisites, with full API support, a cleaner UI, modern graphs, better architecture and better performance. Piwik tracks online visits to one or more websites and displays reports on these visits for analysis. As of September 2015, Piwik was used by nearly 900 thousand websites, or 1.3% of all websites, and has been translated to more than 45 languages. New versions are regularly released every few weeks. The developers of Piwik offers commercial services including yearly support plans, training, managed hosting and general Piwik-related consulting (for installation, system configuration and maintenance, scaling and custom development)

69 Sample Web Analytics Platforms Piwik (cont.) Piwik Analytics Dashboard

70 Sample Web Analytics Platforms Piwik (cont.) Piwik Analytics Visitor

71 Sample Web Analytics Platforms Piwik (cont.) Piwik Analytics Referrers

72 Sample Web Analytics Platforms OWA Open Web Analytics (OWA) is open source web analytics software written in PHP that uses a MySQL database, which makes it compatible for running with an AMP solution stack on various web servers. OWA is comparable to Google Analytics, though OWA is server software anyone can install and run on their own host, while Google Analytics is a software service offered by Google. OWA supports tracking with WordPress and MediaWiki, two popular web site frameworks. OWA provides tracking of and observing the influx of views on websites in addition to tracking competitors

73 Sample Web Analytics Platforms OWA (cont.) OWA Dashboard

74 Sample Web Analytics Platforms OWA (cont.) OWA Heat Map Analysis

75 Resources Books Title Web Analytics 2.0 Authors Avinash Kaushik Year 2010 Hardcover Yes Publisher Wiley Publishing Language English ISBN

76 Resources Web Websites: DAA: Wikipedia: Google Analytics: Piwik: OWA: Educational: Web Analytics 2.0: Centricity/dp/ Web Analytics an Hour a Day: Day/dp/ Web Analytics Demystified: Understanding/dp/ Basics of Web Analytics: Google Analytics 101: 76

77 Summary Web Analytics Basics Basic steps of the web analytics process Web analytics data sources (server log vs page tagging) Web Analytics Definitions Building block terms Visit characterization Content characterization Conversion metrics Sample Web Analytic Platforms List of web analytics software Google Analytics PiWik Open Web Analytics 77

Web Analytics Definitions Approved August 16, 2007

Web Analytics Definitions Approved August 16, 2007 Web Analytics Definitions Approved August 16, 2007 Web Analytics Association 2300 M Street, Suite 800 Washington DC 20037 standards@webanalyticsassociation.org 1-800-349-1070 Licensed under a Creative

More information

Web Analytics Definitions

Web Analytics Definitions Web Analytics Definitions Web Analytics Association 401 Edgewater Place Suite 600 Wakefield MA 01880 USA standards@webanalyticsassociation.org 1-800-349-1070 Licensed under a Creative Commons Attribution-Noncommercial-No

More information

Web Analytics Big Three Definitions Version 1.0

Web Analytics Big Three Definitions Version 1.0 Web Analytics Big Three Definitions Version 1.0 Unique Visitors Visits/Sessions Page Views Web Analytics Association 2300 M Street, Suite 800 Washington DC 20037 standards@webanalyticsassociation.org 1-800-349-1070

More information

Google Analytics for Robust Website Analytics. Deepika Verma, Depanwita Seal, Atul Pandey

Google Analytics for Robust Website Analytics. Deepika Verma, Depanwita Seal, Atul Pandey 1 Google Analytics for Robust Website Analytics Deepika Verma, Depanwita Seal, Atul Pandey 2 Table of Contents I. INTRODUCTION...3 II. Method for obtaining data for web analysis...3 III. Types of metrics

More information

1 Which of the following questions can be answered using the goal flow report?

1 Which of the following questions can be answered using the goal flow report? 1 Which of the following questions can be answered using the goal flow report? [A] Are there a lot of unexpected exits from a step in the middle of my conversion funnel? [B] Do visitors usually start my

More information

Evaluating the impact of research online with Google Analytics

Evaluating the impact of research online with Google Analytics Public Engagement with Research Online Evaluating the impact of research online with Google Analytics The web provides extensive opportunities for raising awareness and discussion of research findings

More information

Google Analytics in the Dept. of Medicine

Google Analytics in the Dept. of Medicine Google Analytics in the Dept. of Medicine Understanding the Analytics Dashboard 1. Click this link to navigate back to your Analytics Settings page, so you can get an overview of and edit all your Analytics

More information

Index. AdWords, 182 AJAX Cart, 129 Attribution, 174

Index. AdWords, 182 AJAX Cart, 129 Attribution, 174 Index A AdWords, 182 AJAX Cart, 129 Attribution, 174 B BigQuery, Big Data Analysis create reports, 238 GA-BigQuery integration, 238 GA data, 241 hierarchy structure, 238 query language (see also Data selection,

More information

Google AdWords customers can see their Analytics data from inside their AdWords account

Google AdWords customers can see their Analytics data from inside their AdWords account Johannes Spruijt Free service offered by Google that generates detailed statistics about the visitors to a website. A premium version is also available for a fee. The product is aimed at marketers as opposed

More information

Using Google Analytics

Using Google Analytics Using Google Analytics Overview Google Analytics is a free tracking application used to monitor visitors to your website in order to provide site designers with a fuller knowledge of their audience. At

More information

Google Analytics Basics

Google Analytics Basics Google Analytics Basics Contents Google Analytics: An Introduction...3 Google Analytics Features... 3 Google Analytics Interface... Changing the Date Range... 8 Graphs... 9 Put Stats into Context... 10

More information

Digital media glossary

Digital media glossary A Ad banner A graphic message or other media used as an advertisement. Ad impression An ad which is served to a user s browser. Ad impression ratio Click-throughs divided by ad impressions. B Banner A

More information

web analytics ...and beyond Not just for beginners, We are interested in your thoughts:

web analytics ...and beyond Not just for beginners, We are interested in your thoughts: web analytics 201 Not just for beginners, This primer is designed to help clarify some of the major challenges faced by marketers today, such as:...and beyond -defining KPIs in a complex environment -organizing

More information

Nonprofit Technology Collaboration. Web Analytics

Nonprofit Technology Collaboration. Web Analytics Web Analytics Contents What is Web Analytics?... 2 Why is Web Analytics Important?... 2 Google Analytics... 3 Using Major Metrics in Google Analytics... 6 Traffic Sources... 6 Visitor Loyalty... 9 Top

More information

Comparison of Web Analytics

Comparison of Web Analytics Dominic Mutai Comparison of Web Analytics Hosted Solutions vs Server-side Analytics Helsinki Metropolia University of Applied Sciences Bachelor of Engineering Media Engineering Thesis 10 February 2015

More information

Introduction. Chapter 1 Why Understanding Your Web Traffic Is Important to Your Business 3

Introduction. Chapter 1 Why Understanding Your Web Traffic Is Important to Your Business 3 Contents Foreword Introduction xix xxi Part I Measuring Success 1 Chapter 1 Why Understanding Your Web Traffic Is Important to Your Business 3 Website Measurement Why Do This?... 4 Information Web Analytics

More information

GOOGLE ANALYTICS 101

GOOGLE ANALYTICS 101 GOOGLE ANALYTICS 101 Presented By Adrienne C. Dupree Please feel free to share this report with anyone who is interested in the topic of building a profitable online business. Simply forward it to them

More information

Demystifying Digital Introduction to Google Analytics. Mal Chia Digital Account Director

Demystifying Digital Introduction to Google Analytics. Mal Chia Digital Account Director Demystifying Digital Introduction to Google Analytics Mal Chia Digital Account Director @malchia @communikateetal Slides will be emailed after the session 2 Workshop Overview 1. Introduction 2. Getting

More information

W3Perl A free logfile analyzer

W3Perl A free logfile analyzer W3Perl A free logfile analyzer Features Works on Unix / Windows / Mac View last entries based on Perl scripts Web / FTP / Squid / Email servers Session tracking Others log format can be added easily Detailed

More information

Getting Started with Google Analytics 7 Easy but comprehensive steps

Getting Started with Google Analytics 7 Easy but comprehensive steps Getting Started with Google Analytics Right, so you have a shiny new website or you have a site that has been up and running for a while now that s great. The hard work is done and the leads and sales

More information

Concepts. Help Documentation

Concepts. Help Documentation Help Documentation This document was auto-created from web content and is subject to change at any time. Copyright (c) 2016 SmarterTools Inc. Concepts Understanding Server Logs and SmarterLogs SmarterStats

More information

Web Analytics. Using emetrics to Guide Marketing Strategies on the Web

Web Analytics. Using emetrics to Guide Marketing Strategies on the Web Web Analytics Using emetrics to Guide Marketing Strategies on the Web Web analytics is the practice of measuring, collecting, analyzing and reporting on Internet data for the purposes of understanding

More information

Getting the most from your Google Analytics

Getting the most from your Google Analytics Session 2 Exploration main reports in more detail Real-Time reports Real-Time reports Use Real-Time to monitor user activity as it happens see each pageview being reported seconds after it occurs how many

More information

Tracking True & False Demystifying Recruitment Marketing Analytics

Tracking True & False Demystifying Recruitment Marketing Analytics Tracking True & False Demystifying Recruitment Marketing Analytics THE CANDIDATE JOURNEY SIMPLIFIED THE DECISION CYCLE SIMPLIFIED Awareness & Attraction Research & Decision Conversion Action THE CANDIDATE

More information

One of the first things you will need to do as you

One of the first things you will need to do as you Chapter 2 Getting to Know Web Analytics Abstract This chapter of Using Web Analytics in the Library provides guidelines for selecting and implementing web analytics tools in a library context. The author

More information

Overview of Website Analytics. membership, marketing & website solutions

Overview of Website Analytics. membership, marketing & website solutions Overview of Website Analytics Part 1 Website Analytics Basics Web Analytics Defined Types of Web Analytics Which type should your chamber use? What is Web Analytics? Web Analytics is the measurement, collection,

More information

英 文 考 題 1. You are an online seller. A consumer purchases a product to be delivered to his office. He then makes another order to be delivered to his

英 文 考 題 1. You are an online seller. A consumer purchases a product to be delivered to his office. He then makes another order to be delivered to his 英 文 考 題 1. You are an online seller. A consumer purchases a product to be delivered to his office. He then makes another order to be delivered to his mother s home. How many purchases will be shown in

More information

Portals and Hosted Files

Portals and Hosted Files 12 Portals and Hosted Files This chapter introduces Progress Rollbase Portals, portal pages, portal visitors setup and management, portal access control and login/authentication and recommended guidelines

More information

WEB ANALYTICS 101. March 20, 2015

WEB ANALYTICS 101. March 20, 2015 WEB ANALYTICS 101 March 20, 2015 AGENDA 1. Define web analytics 2. Explore how analytics tools work 3. Review best practices 4. Get to know your visitors 5. Identify traffic sources 6. Understand site

More information

End User Monitoring. AppDynamics Pro Documentation. Version 4.1.8. Page 1

End User Monitoring. AppDynamics Pro Documentation. Version 4.1.8. Page 1 End User Monitoring AppDynamics Pro Documentation Version 4.1.8 Page 1 End User Monitoring....................................................... 4 Browser Real User Monitoring.............................................

More information

Online terminologie 1. % Exit The percentage of users who exit from a page. Active Time / Engagement Time

Online terminologie 1. % Exit The percentage of users who exit from a page. Active Time / Engagement Time Online terminologie 1 Online terminologie Terminology Explanation % Exit The percentage of users who exit from a page. Active Time / Engagement Time Affiliate Marketing Aggregator AJAX Alt Tag Anchor Tag

More information

Is Your Google Analytics Data Accurate?

Is Your Google Analytics Data Accurate? Is Your Google Analytics Data Accurate? September 18, 2013 Presented By Amin Shawki Analytics Manager Andy Gibson Digital Marketing Analyst 1. 1 Billion+ pageviews/year in sites analyzed and supported

More information

Guide to Analyzing Feedback from Web Trends

Guide to Analyzing Feedback from Web Trends Guide to Analyzing Feedback from Web Trends Where to find the figures to include in the report How many times was the site visited? (General Statistics) What dates and times had peak amounts of traffic?

More information

Extend the Efficiency of a Website Using Web Analytics

Extend the Efficiency of a Website Using Web Analytics 1, 2, 3.4 Extend the Efficiency of a Website Using Web Analytics 1 Mr.S.Balamurugan, 2 Mrs.M.Vasuki, 3 Mrs.A.Angayarkanni, 4 Mrs.P.Aurchana Assistant Professor, Sri Manakula Vinayagar Engineering college,

More information

Web Analytics in China

Web Analytics in China Web Analytics in China From Good to Great Analytics behind the Firewall The Chinese Internet is one-of-a-kind, and using Google Analytics raises a few challenges: Slower connection speed, higher latency

More information

MONITORING YOUR WEBSITE WITH GOOGLE ANALYTICS

MONITORING YOUR WEBSITE WITH GOOGLE ANALYTICS MONITORING YOUR WEBSITE WITH GOOGLE ANALYTICS How to use Google Analytics to track activity on your website and help get the most out of your website 2 April 2012 Version 1.0 Contents Contents 2 Introduction

More information

Google Analytics. Web Skills Programme

Google Analytics. Web Skills Programme Google Analytics Web Skills Programme Google - some facts Google search handles over 1 billion searches per day 7.2 billion daily page views 87.8 billion monthly worldwide searches conducted on Google

More information

Online Certificate March 2012

Online Certificate March 2012 Online Certificate March 2012 Setting the standard Changeboard Key information Certificate type Digital Metric type Web traffic ABC headline 5,445 Daily average Unique Browsers Period 1 March 2012 to 31

More information

Website analytics / statistics Monitoring and analysing the impact of web marketing

Website analytics / statistics Monitoring and analysing the impact of web marketing Website analytics / statistics Monitoring and analysing the impact of web marketing What are website analytics / statistics? Web analytics is the measurement, collection, analysis and reporting of website

More information

Canadian Association for Research Libraries Toronto, Ontario 14 October 2015

Canadian Association for Research Libraries Toronto, Ontario 14 October 2015 Canadian Association for Research Libraries Toronto, Ontario 14 October 2015 Introductions Help & Learning Standard Reports Audience Traffic Sources Content Behaviour Measuring Value Basic Filtering &

More information

How To Test Your Web Site On Wapt On A Pc Or Mac Or Mac (Or Mac) On A Mac Or Ipad Or Ipa (Or Ipa) On Pc Or Ipam (Or Pc Or Pc) On An Ip

How To Test Your Web Site On Wapt On A Pc Or Mac Or Mac (Or Mac) On A Mac Or Ipad Or Ipa (Or Ipa) On Pc Or Ipam (Or Pc Or Pc) On An Ip Load testing with WAPT: Quick Start Guide This document describes step by step how to create a simple typical test for a web application, execute it and interpret the results. A brief insight is provided

More information

A PRESENTATION BY RITESH GUPTA

A PRESENTATION BY RITESH GUPTA A PRESENTATION BY RITESH GUPTA WEB ANALYTICS next 2 Deep Dive 01 into Web Analytics Web Analytics < 3 Digital Analytics / Measurability Caution: The addictive adrenaline of analzying website data, interpreting

More information

About Google Analytics

About Google Analytics About Google Analytics v10 OmniUpdate, Inc. 1320 Flynn Road, Suite 100 Camarillo, CA 93012 OmniUpdate, Inc. 1320 Flynn Road, Suite 100 Camarillo, CA 93012 800.362.2605 805.484.9428 (fax) www.omniupdate.com

More information

Impressive Analytics

Impressive Analytics Impressive Analytics and Insight on a Shoestring Lisa Ikariyama & Tracy Anderson Cabbage Tree Creative www.cabbagetree.co.nz Getting Started Before you design a page on your website or get started with

More information

User s guide. Version 2.0. August 2010 1 / 23

User s guide. Version 2.0. August 2010 1 / 23 User s guide Version 2.0 August 2010 1 / 23 1 CONTENTS 2 Introduction... 3 2.1 What is Mouseflow?... 3 2.2 What can Mouseflow be used for?... 3 2.3 How does Mouseflow work?... 3 2.4 Who is the target audience?...

More information

Measure What Matters. don t Track What s Easy, track what s Important. kissmetrics.com

Measure What Matters. don t Track What s Easy, track what s Important. kissmetrics.com 1 2 3 4 5 6 Measure What Matters don t Track What s Easy, track what s Important kissmetrics.com Measure What Matters A lot of technologies seem to be one step behind what we really want. And the analytics

More information

SmarterStats vs. Google Analytics

SmarterStats vs. Google Analytics SmarterTools Inc. SmarterStats vs. Google Analytics A Comparison of Log File and Script-based Analysis for Accurate Website Statistics SmarterTools Development Team 10/7/2010 Contents Who Should Use This

More information

Google Analytics Access for Bentley Employees

Google Analytics Access for Bentley Employees Google Analytics Access for Bentley Employees 1. Google Analytics Login Google Analytics URL: http://www.google.com/analytics User name: bentleyshared@gmail.com Password: 2015analytics 2. Google Analytics

More information

Decision-making using web analytics. Rachell Underhill, UNC Grad School Anita Crescenzi, UNC Health Sciences Library

Decision-making using web analytics. Rachell Underhill, UNC Grad School Anita Crescenzi, UNC Health Sciences Library Decision-making using web analytics Rachell Underhill, UNC Grad School Anita Crescenzi, UNC Health Sciences Library For today Analytics at The Graduate School and the Health Sciences Library What analytics

More information

Introduction to Google Analytics

Introduction to Google Analytics Introduction to Google Analytics Introduction to Google Analytics This guide is designed to give you the basic overview on Google Analytics and information on: How many people are visiting your website

More information

Google Analytics Health Check Laying the foundations for successful analytics and optimisation

Google Analytics Health Check Laying the foundations for successful analytics and optimisation Google Analytics Health Check Laying the foundations for successful analytics and optimisation Google Analytics Property [UA-1234567-1] Domain [Client URL] Date of Review MMM YYYY Consultant [Consultant

More information

Google Analytics 101

Google Analytics 101 American Marketing Association San Antonio Chapter presents Google Analytics 101 Instructor: Maria Haase Workshop Objectives Learn how to create an effective Measurement Plan for your organization Learn

More information

Webtrends for SharePoint 2010 A Microsoft Preferred Analytics Solution for SharePoint

Webtrends for SharePoint 2010 A Microsoft Preferred Analytics Solution for SharePoint Webtrends for SharePoint 2010 A Microsoft Preferred Analytics Solution for SharePoint Provided to By Sean Browning, Webtrends 13-Sep-2011 Webtrends Expertise with SharePoint Webtrends is a Microsoft-designated

More information

Google Analytics Guide. for BUSINESS OWNERS. By David Weichel & Chris Pezzoli. Presented By

Google Analytics Guide. for BUSINESS OWNERS. By David Weichel & Chris Pezzoli. Presented By Google Analytics Guide for BUSINESS OWNERS By David Weichel & Chris Pezzoli Presented By Google Analytics Guide for Ecommerce Business Owners Contents Introduction... 3 Overview of Google Analytics...

More information

Using Web Analytics to Track the Use of Formal and Informal Learning. Walter Wimberly, SunGard Public Sector

Using Web Analytics to Track the Use of Formal and Informal Learning. Walter Wimberly, SunGard Public Sector 101 Using Web Analytics to Track the Use of Formal and Informal Learning Walter Wimberly, SunGard Public Sector Successfully Measuring the Use of Your elearning Site (An Introduction to Web Analytics)

More information

Web Analytics. User Guide. July 2012. Welcome to AT&T Website Solutions SM

Web Analytics. User Guide. July 2012. Welcome to AT&T Website Solutions SM July 2012 Web Analytics User Guide Welcome to AT&T Website Solutions SM We are focused on providing you the very best web hosting service including all the tools necessary to establish and maintain a successful

More information

Getting Starting with Google Analytics. Summer Durrant IUPUI University Library Indiana Library Federation Conference November 14, 2012

Getting Starting with Google Analytics. Summer Durrant IUPUI University Library Indiana Library Federation Conference November 14, 2012 Getting Starting with Google Analytics Summer Durrant IUPUI University Library Indiana Library Federation Conference November 14, 2012 What is Google Analytics? Google Analytics is a tool to quantitatively

More information

Microsoft Advertising adcenter Campaign Analytics Getting Started Guide

Microsoft Advertising adcenter Campaign Analytics Getting Started Guide Microsoft Advertising adcenter Campaign Analytics Getting Started Guide Contents Introduction... 3 What is Microsoft Advertising adcenter Campaign Analytics?... 3 Useful terms... 3 Overview... 4 Get Started...

More information

Mobile Discrepancancies

Mobile Discrepancancies Mobile Discrepancancies FAQs 2013 Contents Section One - Discrepancies What are the top reasons for discrepancies? 2 What are the basic checks I should be doing to reduce discrepancies? 3 How can different

More information

Internet Advertising Glossary Internet Advertising Glossary

Internet Advertising Glossary Internet Advertising Glossary Internet Advertising Glossary Internet Advertising Glossary The Council Advertising Network bring the benefits of national web advertising to your local community. With more and more members joining the

More information

Load testing with. WAPT Cloud. Quick Start Guide

Load testing with. WAPT Cloud. Quick Start Guide Load testing with WAPT Cloud Quick Start Guide This document describes step by step how to create a simple typical test for a web application, execute it and interpret the results. 2007-2015 SoftLogica

More information

Socialbakers Analytics User Guide

Socialbakers Analytics User Guide 1 Socialbakers Analytics User Guide Powered by 2 Contents Getting Started Analyzing Facebook Ovierview of metrics Analyzing YouTube Reports and Data Export Social visits KPIs Fans and Fan Growth Analyzing

More information

Google Analytics workbook

Google Analytics workbook Google Analytics workbook Sub-title here Google Analytics workbook Overview Google Analytics is just one of many tools available for tracking activity on a website or mobile application. It provides users

More information

Google Analytics Guide

Google Analytics Guide Google Analytics Guide 1 We re excited that you re implementing Google Analytics to help you make the most of your website and convert more visitors. This deck will go through how to create and configure

More information

Google Analytics. Google Analytics Glossary of terms

Google Analytics. Google Analytics Glossary of terms Google Analytics Google Analytics is a service offered by Google that generates detailed statistics about a website's traffic and traffic sources and measures set goals. Google Analytics isn't a magical

More information

Types of KPI and Their Examples

Types of KPI and Their Examples Heinrich Herz Institute Web Usability how to select right KPI s and collect user evidences Leokadija Sviridova, Einsteinufer 37, 10587 Berlin www.hhi.fraunhofer.de Profile Conception and Development in

More information

Tracking E-mail Campaigns with G-Lock Analytics

Tracking E-mail Campaigns with G-Lock Analytics User Guide Tracking E-mail Campaigns with G-Lock Analytics Copyright 2009 G-Lock Software. All Rights Reserved. Table of Contents Introduction... 3 Creating User Account on G-Lock Analytics. 4 Downloading

More information

Guide to set up Google Analytics - New customers Visiolab introduction

Guide to set up Google Analytics - New customers Visiolab introduction Guide to set up Google Analytics - New customers Visiolab introduction This Guide will help you set up your Google Analytics account. At the same time, it will help you understand how Visiolink applications

More information

Digital Media Glossary. A user-friendly guide to the language of digital media.

Digital Media Glossary. A user-friendly guide to the language of digital media. Digital Media Glossary A user-friendly guide to the language of digital media. Lost in the lingo of digital media? We ve got you covered. This glossary of basic digital terms gives you everything you need

More information

SharePoint Intranet and Internet Spaces

SharePoint Intranet and Internet Spaces SharePoint Intranet and Internet Spaces As businesses look to improve efficiencies across their organization, many are turning to SharePoint to save money while empowering and connecting their employees

More information

HOW DOES GOOGLE ANALYTICS HELP ME?

HOW DOES GOOGLE ANALYTICS HELP ME? Google Analytics HOW DOES GOOGLE ANALYTICS HELP ME? Google Analytics tells you how visitors found your site and how they interact with it. You'll be able to compare the behavior and profitability of visitors

More information

Web analytics From Wikipedia, the free encyclopedia

Web analytics From Wikipedia, the free encyclopedia Web analytics From Wikipedia, the free encyclopedia Web analytics is the measurement, collection, analysis and reporting of internet data for purposes of understanding and optimizing web usage. [1] Web

More information

Get Started with LeadSquared Guide for Marketing Users. Complete lead to revenue platform

Get Started with LeadSquared Guide for Marketing Users. Complete lead to revenue platform Get Started with LeadSquared Guide for Marketing Users Complete lead to revenue platform Bookmark LeadSquared Login Page Login to LeadSquared at https://run.leadsquared.com (Bookmark the URL) LeadSquared

More information

Online Certificate November 2012

Online Certificate November 2012 Online Certificate November 212 Setting the standard Milkround Key information Certificate type Digital Metric type Web traffic ABC headline 14,517 Daily average Unique Browsers Worldwide traffic Daily

More information

Practical Exercises. Professional Diploma in Digital Marketing. Analytics

Practical Exercises. Professional Diploma in Digital Marketing. Analytics Practical Exercises Professional Diploma in Digital Marketing Analytics Copyright All rights reserved worldwide under International copyright agreements. No part of this document can be reproduced, stored

More information

Installing. Google Analytics. On Your WordPress Website. A Comprehensive How-To. For Business Owners. To Better Inform Your SEO and Marketing Strategy

Installing. Google Analytics. On Your WordPress Website. A Comprehensive How-To. For Business Owners. To Better Inform Your SEO and Marketing Strategy 1 Installing Google Analytics On Your WordPress Website A Comprehensive How-To For Business Owners To Better Inform Your SEO and Marketing Strategy this complimentary offering from Mongo LLC SEO Analysis,

More information

Chapter VIII A Review of Methodologies for Analyzing Websites

Chapter VIII A Review of Methodologies for Analyzing Websites 141 Chapter VIII A Review of Methodologies for Analyzing Websites Danielle Booth Pennsylvania State University, USA Bernard J. Jansen Pennsylvania State University, USA Abstract This chapter is an overview

More information

A guide to affilinet s tracking technology

A guide to affilinet s tracking technology A guide to affilinet s tracking technology Content Introduction 1 What s covered in this Paper? 1 1. Why does affilinet use cookies? 1 Figure 1 the Commercial Model for Performance Marketing 1 2. How does

More information

Google Analytics and Google Analytics Premium: limits and quotas

Google Analytics and Google Analytics Premium: limits and quotas Table Of Contents Data collection & Processing limits Accounts and Profiles Reports Admin Area Google Analytics data fields Lengths Google Analytics API Data collection & Processing limits 10 million hits

More information

WEB ANALYTICS. Presented by Massimo Paolini MPThree Consulting Inc. www.mpaolini.com 408-256-0673

WEB ANALYTICS. Presented by Massimo Paolini MPThree Consulting Inc. www.mpaolini.com 408-256-0673 WEB ANALYTICS Presented by Massimo Paolini MPThree Consulting Inc. www.mpaolini.com 408-256-0673 WEB ANALYTICS IS ABOUT INCREASING REVENUE WHAT WE LL COVER Why should you use Asynchronous code What are

More information

SiteCelerate white paper

SiteCelerate white paper SiteCelerate white paper Arahe Solutions SITECELERATE OVERVIEW As enterprises increases their investment in Web applications, Portal and websites and as usage of these applications increase, performance

More information

DISCOVERING OUR PATRONS USING GOOGLE ANALYTICS

DISCOVERING OUR PATRONS USING GOOGLE ANALYTICS DISCOVERING OUR PATRONS USING GOOGLE ANALYTICS Michael Sheehan Lake Superior Libraries Symposium, WITC Superior June 1, 2012 A LITTLE ABOUT ME AND MY EMPLOYER Mike Sheehan is the Assistant Director at

More information

Urchin Demo (12/14/05)

Urchin Demo (12/14/05) Urchin Demo (12/14/05) General Info / FAQs 1. What is Urchin? Regent has purchased a license for Urchin 5 Web Analytics Software. This software is used to analyze web traffic and produce reports on website

More information

DEPLOYMENT GUIDE Version 1.2. Deploying the BIG-IP system v10 with Microsoft Exchange Outlook Web Access 2007

DEPLOYMENT GUIDE Version 1.2. Deploying the BIG-IP system v10 with Microsoft Exchange Outlook Web Access 2007 DEPLOYMENT GUIDE Version 1.2 Deploying the BIG-IP system v10 with Microsoft Exchange Outlook Web Access 2007 Table of Contents Table of Contents Deploying the BIG-IP system v10 with Microsoft Outlook Web

More information

Search Engine Optimization Glossary

Search Engine Optimization Glossary Search Engine Optimization Glossary A ALT Text/Tag or Attribute: A description of an image in your site's HTML. Unlike humans, search engines read only the ALT text of images, not the images themselves.

More information

Mobile Ad Tracking Impacts. App Marketing Results. How. Comparisons, advantages and limitations of today s ad tracking technologies

Mobile Ad Tracking Impacts. App Marketing Results. How. Comparisons, advantages and limitations of today s ad tracking technologies How Mobile Ad Tracking Impacts App Marketing Results Comparisons, advantages and limitations of today s ad tracking technologies Advertising Identifier Facebook ID Android Referrer Digital Fingerprinting

More information

Web Analytics and the Importance of Location Targeting

Web Analytics and the Importance of Location Targeting Mid-Term Research Paper Web Analytics Todd J. Barry University Prof: Michel Sily IT-338 Web Design Authoring & Publishing Wednesday, September 23 rd 2009 Web Analytics is one of the most comprehensive

More information

8 illegitimate reasons for discrepancies between AdWords and Google Analytics conversions

8 illegitimate reasons for discrepancies between AdWords and Google Analytics conversions 8 illegitimate reasons for discrepancies between AdWords and Google Analytics conversions If you are an experienced AdWords advertiser, you probably have familiarity with AdWords conversion tracking code.

More information

Interpreting Web Analytics Data

Interpreting Web Analytics Data Interpreting Web Analytics Data Whitepaper 8650 Commerce Park Place, Suite G Indianapolis, Indiana 46268 (317) 875-0910 info@pentera.com www.pentera.com Interpreting Web Analytics Data At some point in

More information

Analytics Configuration Reference

Analytics Configuration Reference Sitecore Online Marketing Suite 1 Analytics Configuration Reference Rev: 2009-10-26 Sitecore Online Marketing Suite 1 Analytics Configuration Reference A Conceptual Overview for Developers and Administrators

More information

This tutorial is designed for SEO professionals as well as beginners who would like to learn the basics of Web Analytics and its techniques.

This tutorial is designed for SEO professionals as well as beginners who would like to learn the basics of Web Analytics and its techniques. About the Tutorial is a technique that you can employ to collect, measure, report, and analyze your website data. It is normally carried out to analyze the performance of a website and optimize its web

More information

ANALYZING YOUR RESULTS

ANALYZING YOUR RESULTS ANALYZING YOUR RESULTS Kelley Jarrett, Market Manager Design Billy Stephens, Account Manager Design Measuring performance and learning from your audiences behaviors and feedback. REVISIT BENCHMARKS

More information

5 TIPS FOR SETTING MEASURABLE SOCIAL MEDIA GOALS

5 TIPS FOR SETTING MEASURABLE SOCIAL MEDIA GOALS TIP SHEET 5 TIPS FOR SETTING MEASURABLE SOCIAL MEDIA GOALS Social media participation has become a must for businesses today. A survey by CMO in February 2012 revealed that marketers expect to spend almost

More information

5 Tips For Setting Measurable. Social Media Goals. 5 Tips for Measurable social media goals

5 Tips For Setting Measurable. Social Media Goals. 5 Tips for Measurable social media goals 5 Tips For Setting Measurable Social Media Goals 1 introduction Five practical tips for setting measurable social media goals Social media participation has become a must for businesses today. A survey

More information

1. Chat4Support Introduction

1. Chat4Support Introduction 1. Chat4Support Introduction Chat4Support is a CodingBest product that helps businesses to improve their sales and customer service on the Internet. Website visitors just only need to click on the chat

More information

A Tool for Evaluation and Optimization of Web Application Performance

A Tool for Evaluation and Optimization of Web Application Performance A Tool for Evaluation and Optimization of Web Application Performance Tomáš Černý 1 cernyto3@fel.cvut.cz Michael J. Donahoo 2 jeff_donahoo@baylor.edu Abstract: One of the main goals of web application

More information

Presented by Spyros Mygdanis & Giorgos Kalaitzis

Presented by Spyros Mygdanis & Giorgos Kalaitzis Presented by Spyros Mygdanis & Giorgos Kalaitzis About this presentation 1. Websites Elements of a successful website 2. Content 3. Internet Marketing Channels 4. Building your online strategy 1. Websites

More information

oneforty. Social Media KPIs and You: A Love Story Janet Aronica Directory, Marketing & Community oneforty

oneforty. Social Media KPIs and You: A Love Story Janet Aronica Directory, Marketing & Community oneforty oneforty. Social Media KPIs and You: A Love Story Janet Aronica Directory, Marketing & Community oneforty Social Media KPIs and You: A Love Story Establishing a social media measurement plan is a crucial

More information

Simple SEO Success. Google Analytics & Google Webmaster Tools

Simple SEO Success. Google Analytics & Google Webmaster Tools Google Analytics & Google Webmaster Tools In this module we are going to be looking at 2 free tools and why they are essential when running any online business website. First of all you need to ensure

More information

How To Plan A Website

How To Plan A Website Web Marketing Action Plan Title: Create an Inbound Lead Generation Campaign Results: Generate & pre-qualify internet leads Overall Accountability: Marketing Strategist Reporting Position: Marketing Director

More information