SlideShare a Scribd company logo
1 of 15
Google Analytics
What is web analytics?
Web analytics is measurement, collection, analysis and reporting of web data for purpose of
understanding web usage. Web analytics not only used as tool to measure web traffic but can also be
used as tool for business and market research and to assess and improve effectiveness of website.
Analytics Tools
There are differenttoolsavailableinthe markettotrack andanalyze the webtrafficanduserinteraction.
Sr.no Tool
1. Google Analytics
2. Google Website Optimizer
3. Piwik
4. Open web analytics
5. Woopra
6. Mint
7. Clicky
8. Kissmetrics
9. CrazzyEgg
10. Site Meter
From all above listedtools, Google Analyticsisthe mostpopularand commonlyusedtool toanalyze the
web traffic and different user interactions.
In subsequent sections, we will have detailed overview about Google Analytics.
Google Analytics
Google analyticsisthe free analyticstool usedto whichprovidesstatisticsforwebsite.Ithelpstoanalyze
the web traffic as well as different user interactions.
To get started with Google analytics, you first need to set up Google analytics account.
1. Create a newGoogle analyticsaccount if you do not have. Visitgoogle.com/analytics.Thenclick
Access Google Analytics or Create an account button and follow the instructions.
2. Set up the property
Once youfinishedconfiguration,click“GetTrackingCode”and youwillget the trackingcode.Just
copy and paste the tracking code into every web page where you want to track.
Once youaddedthe tracking code to yourweb site Google analyticswill startcollectingdatafor
your website.
The JavaScript snippet above will record page views for every page on your site containing the
code.
Page Tracking
Page tracking allows you to measure number of views for a particular page on your website.
For a website, you might want to track page when large portion of screen changes.
For example, you can track the page when the user goes from home screen to contact screen.
The defaultJavaScriptsnippetforanalytics.jscontainsapage trackingcall.Sowhenyouinstall the
tracking code, it will automatically start tracking the page.
There are 3 fields that can be sent with tracking code.
Value Type Required Description
Location String No Url of the page to be tracked
Page String No The page pathandquerystringof the page(ex:/homepage?id=10)
Title String No The title of the page(ex:homepage)
To send a pageview, pass the ‘ga’ function ‘send’ command with the ‘pageview’ hit type.
ga(‘send’,’pageview’);
When this command is executed the analytics.js library sets the title value using document.title
browserproperty. The libraryalsosetsthe locationvalueusingthe followingbrowserproperties.
Once calculated, locationvalue senttoGoogle Analyticsservers whererestof the page valuesset.
var location= window.location.protocol + ‘//’+window.location.hostname+
window.location.pathname + window.location.search;
You can override the defaultvalues.To override the default page values you can pass additional
Parameters to ga command.
ga(‘send’,’pageview’,{
‘page’:’/contact’,
‘title’:’Contact’ })
To see reports goto “Reports” tab.
Google analytics reports lets you access the performance of your website content and actions
usertakesonwebsite. The behaviorsection inanalyticsreports providesinformationaboutwhat
your visitors do on your website.
You can access the behavior reports using the menu in the left side bar of Google analytics
dashboard.
There are total nine separate reporting sections and tools under Behavior in your website’s Google
analytics profile.
1. Overview
The overviewreportprovidesagraphshowingamountof trafficyour website receivesandsome
additional metrics.
Brief description of data in behavior overview report
a. Pageviews:The total numberof pagesviewed. Thisnumberincludesthe repeatedviewsof a
single page.Inother words,single person may view the same page multiple times and each
view is counted as page view.
b. Unique Pageviews:The numberof individual people whohaveviewedaspecificpage atleast
once during the visit.
c. Avg. Time on Page: The average amount of time user spends on viewing specific page or
screen or set of pages.
d. Bounce Rate: The percentage of single-page visits or number of visits in which people left
your website fromthe same page they enteredon.For example,if youvisita page and then
leave, that is counted as bounce.
e. % Exit: The percentage of users who exit from a page or set of pages.
2. Behavior Flow
The behaviorreportletsyou see the path visitorscommonlytake onyour website-fromthe first
page they view to the last page they visit before leaving your website.
3. Site Content
The site contentreportshowsthe following reportswhichshowshow people engage withpages
on your website.
 All Pages:
The all pagesreportdisplaysthe toppagedof website basedonwebtraffic.Italsoshows
each page’s pageview, unique Pageviews, average time on page, bounce rate, %exit
 Content Drilldown
The content drilldown report is helpful for the website having subfolders such as
domain.org/support, domain.org/Help etc.
This report also allows you to see top folders of content on your site and top content
within those folders.
 Landing Pages
The landing pages report shows the top pages on your website where visitors enter.
 Exit Pages
The exit pages report shows last pages people visit before exiting your website.
4. Site Speed
The site speed reports show some crucial reports which helps you to identify the areas where
your website needs to optimize.
4.1 Site Speed Overview
The site speed overview report displays a graph of average load time for all the pages
Brief description of the metrics that you will find in Site speed overview
4.1.1 Avg. Page Load Time
The average amount of time it takes for page to load from initiation of
pageview(ex: user clicks on a page link) to load completion in a browser.
4.1.2 Avg. Redirection Time
The average amount of time spent in redirects before fetching a page.
4.1.3 Avg. Domain Lookup Time
The average amount of time spent in DNS lookup for a page.
4.1.4 Avg. Server Connection Time
The average amount of time spent establishing TCP connection for a page.
4.1.5 Avg. Server Response Time
The average amount of time your server takes to respond to user request,
including the network time from the users location to your server.
4.1.6 Avg. Page Download Time
The average amount of time to download a page
4.2 Page Timings
The page timingreportdisplayshow longyourmost visitedpagestake toload compared
to overall average load time for your website.
4.3 Speed Suggestions
The speedsuggestionsreportgivesdetailedinformationonhow tooptimizethe pageson
your website.
4.4 User timing
User timing shows performance information specific to your site.
Note:To use usertimingreports,youneedtoimplementcustom code on your website.
User timingsallowdeveloperstomeasure periodsof time usinganalytics.jslibrary.Thisis
Particularly useful for developers to measure the latency, or time spent, making AJAX
requests, loading web resources.
User timing are measured using the following fields:
Value Type Required Description
timingCategory String Yes A stringforcategorizing all usertimingvariables
into logical groups(ex: web service call)
timingVar String Yes A string to identifythe variable beingrecorded
(ex: JavaScript load)
timingValue Number Yes The number of milliseconds in elapsed time to
report to Google Analytics (ex:20ms)
timingLabel String No A string that can be used add flexibility in
visualizing user timings in reports (ex: Url for
web service)
Implementation
To send the user timing data use “ga” function and pass “send” command with the
“timing” hit type.
ga('send', 'timing', 'timingCategory', 'timingVar', timingValue);
ga("send", "timing", "Services/abc/currentUserName", "Ajax Get Request
Call", 232)
where:
“Services/abc/currentUserName” is a timing category
“Ajax Request call” is a timing variable
“232” is a timing value
For more information:
https://developers.google.com/analytics/devguides/collection/analyticsjs/user-
timings
5. Site Search
If you have search engine on your website which visitors can use to search the site, you can
measure the usage of this search functionality.The results you can find under the site Search
Category in Google Analytics. To enable site search follow the steps below:
Site search consists of:
 Overview
The site search overview report displays overall metrics for the visitors who use search
box on your website.
 Usage
The usage report breaks down the number of visits where someone used search box in
your website versus the number of visits where the search box wasn’t used.
 Search Terms
The search term reportdisplayskeywordsenteredintoyourwebsitessearchbox.Along
with the terms, it also shows metrics for total number of searches, % search exits and
additional details about visits related to search terms.
 Pages
The Pagesreportdisplaysthe same metricsmentionedaboveforsearchterms,butinthis
case the metricsare focusedonpageswhere searchesoriginated
6. Events
The events section in Google Analytics allows you to track the specific user interaction on your
website such as clicks on external links, file downloads, video plays etc.
To use events reporting you need to setup the events tracking code in your web site.
 Setting event tracking code
Event tracking allows to measure how user interacts with content of your web site. For
example, you might want to track how many times a buttons was pressed.
An event consists of following fields:
Value Type Required Description
Category String Yes The object that was interacted with(ex: button)
Action String Yes Type of interaction (ex: click)
Label String No Useful forcategorizingevents(ex: nav buttions)
Value Number No Useful to pass counts(ex:4 times)
Implementation
To send an event, pass “ga” function the “send” command with “event” hit type
ga(‘send’,’event’,’category’,’action’)
Ex: ga(‘send’,’event’,’User Actions’,’DownloadDocument’)
Where;
User Actions is event category
DownloadDocument is event action
Once you are done with setting event tracking code in your website, you can see the
Following reports in Google analytics
6.1 Events Overview
The eventsoverviewreportdisplaysthe summaryof visitorinteractions you are tracking
on yourwebsite.The reportshowsnumberof eventsbasedonevent category, action, label.
6.2 Top Events
The top eventreportdisplaysthe events with most user interaction. For example, if you
are tracking “UserAction”onyourwebsite usingthe eventtrackingcode thenyoucanclickon
User Actions from this report to see specific links that visitors are clicking on when they
leave your website.
6.3 Pages
The pagesreportshows the top pageswhere visitorsinteractwiththe eventsyouare tracking.
6.4 Events Flow
The events flow report displays the path visitors take on your website from where they
arrive to when they interact with your event.
7. AdSense
Google AdSenseprovidesafree,flexiblewaytoearnmoneyfromyourwebsites,mobile sitesand
site search results with relevant and engaging data. To use AdSense reports you must link your
Google AdSense Account to Google Analytics Account.
For more details:
https://developers.google.com/adsense/
8. Experiments
Experiments in Google analytics allow you to conduct simple testing to see which landing page
variations performs best at meeting specific conversion goals.
For more details on Experiments:
https://developers.google.com/analytics/devguides/platform/experiments-overview
9. In-Page Analytics
In-page analytics feature enables you to view your web page along with your Google Analytics
data. To use this feature, you must install Page Analytics Google Chrome Extension.

More Related Content

What's hot

Evaluation of Web Search Engines Based on Ranking of Results and Features
Evaluation of Web Search Engines Based on Ranking of Results and FeaturesEvaluation of Web Search Engines Based on Ranking of Results and Features
Evaluation of Web Search Engines Based on Ranking of Results and FeaturesWaqas Tariq
 
Search Engine Manifesto
Search Engine  ManifestoSearch Engine  Manifesto
Search Engine Manifestobhabeshnath1
 
IJCER (www.ijceronline.com) International Journal of computational Engineerin...
IJCER (www.ijceronline.com) International Journal of computational Engineerin...IJCER (www.ijceronline.com) International Journal of computational Engineerin...
IJCER (www.ijceronline.com) International Journal of computational Engineerin...ijceronline
 
Googling of GooGle
Googling of GooGleGoogling of GooGle
Googling of GooGlebinit singh
 
A Two Stage Crawler on Web Search using Site Ranker for Adaptive Learning
A Two Stage Crawler on Web Search using Site Ranker for Adaptive LearningA Two Stage Crawler on Web Search using Site Ranker for Adaptive Learning
A Two Stage Crawler on Web Search using Site Ranker for Adaptive LearningIJMTST Journal
 
Enhance Crawler For Efficiently Harvesting Deep Web Interfaces
Enhance Crawler For Efficiently Harvesting Deep Web InterfacesEnhance Crawler For Efficiently Harvesting Deep Web Interfaces
Enhance Crawler For Efficiently Harvesting Deep Web Interfacesrahulmonikasharma
 
SEO and Content Management System
SEO and Content Management SystemSEO and Content Management System
SEO and Content Management SystemDouglas Karr
 
A synonym based approach of data mining in SEO
A synonym based approach of data mining in SEOA synonym based approach of data mining in SEO
A synonym based approach of data mining in SEOhussein khateb
 
Focused web crawling using named entity recognition for narrow domains
Focused web crawling using named entity recognition for narrow domainsFocused web crawling using named entity recognition for narrow domains
Focused web crawling using named entity recognition for narrow domainseSAT Publishing House
 
Smart Crawler: A Two Stage Crawler for Concept Based Semantic Search Engine.
Smart Crawler: A Two Stage Crawler for Concept Based Semantic Search Engine.Smart Crawler: A Two Stage Crawler for Concept Based Semantic Search Engine.
Smart Crawler: A Two Stage Crawler for Concept Based Semantic Search Engine.iosrjce
 
On page and off page seo
On page and off page seoOn page and off page seo
On page and off page seoKAVITHAS102
 
Search engine and web crawler
Search engine and web crawlerSearch engine and web crawler
Search engine and web crawlerishmecse13
 
Introduction to Search Engine Optimization
Introduction to Search Engine OptimizationIntroduction to Search Engine Optimization
Introduction to Search Engine OptimizationGauravPrajapati39
 
Effective Searching Policies for Web Crawler
Effective Searching Policies for Web CrawlerEffective Searching Policies for Web Crawler
Effective Searching Policies for Web CrawlerIJMER
 

What's hot (16)

Evaluation of Web Search Engines Based on Ranking of Results and Features
Evaluation of Web Search Engines Based on Ranking of Results and FeaturesEvaluation of Web Search Engines Based on Ranking of Results and Features
Evaluation of Web Search Engines Based on Ranking of Results and Features
 
Search Engine Manifesto
Search Engine  ManifestoSearch Engine  Manifesto
Search Engine Manifesto
 
IJCER (www.ijceronline.com) International Journal of computational Engineerin...
IJCER (www.ijceronline.com) International Journal of computational Engineerin...IJCER (www.ijceronline.com) International Journal of computational Engineerin...
IJCER (www.ijceronline.com) International Journal of computational Engineerin...
 
Googling of GooGle
Googling of GooGleGoogling of GooGle
Googling of GooGle
 
A Two Stage Crawler on Web Search using Site Ranker for Adaptive Learning
A Two Stage Crawler on Web Search using Site Ranker for Adaptive LearningA Two Stage Crawler on Web Search using Site Ranker for Adaptive Learning
A Two Stage Crawler on Web Search using Site Ranker for Adaptive Learning
 
Search Engine Manifesto
Search Engine ManifestoSearch Engine Manifesto
Search Engine Manifesto
 
Enhance Crawler For Efficiently Harvesting Deep Web Interfaces
Enhance Crawler For Efficiently Harvesting Deep Web InterfacesEnhance Crawler For Efficiently Harvesting Deep Web Interfaces
Enhance Crawler For Efficiently Harvesting Deep Web Interfaces
 
SEO and Content Management System
SEO and Content Management SystemSEO and Content Management System
SEO and Content Management System
 
A synonym based approach of data mining in SEO
A synonym based approach of data mining in SEOA synonym based approach of data mining in SEO
A synonym based approach of data mining in SEO
 
Focused web crawling using named entity recognition for narrow domains
Focused web crawling using named entity recognition for narrow domainsFocused web crawling using named entity recognition for narrow domains
Focused web crawling using named entity recognition for narrow domains
 
Smart Crawler: A Two Stage Crawler for Concept Based Semantic Search Engine.
Smart Crawler: A Two Stage Crawler for Concept Based Semantic Search Engine.Smart Crawler: A Two Stage Crawler for Concept Based Semantic Search Engine.
Smart Crawler: A Two Stage Crawler for Concept Based Semantic Search Engine.
 
On page and off page seo
On page and off page seoOn page and off page seo
On page and off page seo
 
Search engine and web crawler
Search engine and web crawlerSearch engine and web crawler
Search engine and web crawler
 
Introduction to Search Engine Optimization
Introduction to Search Engine OptimizationIntroduction to Search Engine Optimization
Introduction to Search Engine Optimization
 
How Google Works
How Google WorksHow Google Works
How Google Works
 
Effective Searching Policies for Web Crawler
Effective Searching Policies for Web CrawlerEffective Searching Policies for Web Crawler
Effective Searching Policies for Web Crawler
 

Viewers also liked

September 11 quarterly report (final)
September 11 quarterly report (final)September 11 quarterly report (final)
September 11 quarterly report (final)tourismsc
 
Quarterly Market Review: Q4 2015
Quarterly Market Review: Q4 2015Quarterly Market Review: Q4 2015
Quarterly Market Review: Q4 2015Mark Stern
 
1st Quarter 2014 Performance of the Global 60 Equity -40 Fixed Income
1st Quarter 2014 Performance of the Global 60 Equity -40 Fixed Income1st Quarter 2014 Performance of the Global 60 Equity -40 Fixed Income
1st Quarter 2014 Performance of the Global 60 Equity -40 Fixed IncomeAtlantis Financial Inc
 
Presentation of Quarterly Report_Deborah Ighagbon
Presentation of Quarterly Report_Deborah IghagbonPresentation of Quarterly Report_Deborah Ighagbon
Presentation of Quarterly Report_Deborah IghagbonAANUOLUWAPO D. IGHAGBON
 
Cdas 2012, lilian edwards and edina harbinja
Cdas 2012, lilian edwards and edina harbinjaCdas 2012, lilian edwards and edina harbinja
Cdas 2012, lilian edwards and edina harbinjaLilian Edwards
 
Emerce Performance 2014 -- Analytics Ninja
Emerce Performance 2014 -- Analytics NinjaEmerce Performance 2014 -- Analytics Ninja
Emerce Performance 2014 -- Analytics NinjaAnalytics Ninja LLC
 
Getting Actionable Insights From Tracking Users in Ecommerce
Getting Actionable Insights From Tracking Users in EcommerceGetting Actionable Insights From Tracking Users in Ecommerce
Getting Actionable Insights From Tracking Users in EcommerceAndraz Stalec
 
Europe B2C Ecommerce report 2013 - light version
Europe B2C Ecommerce report 2013 -  light versionEurope B2C Ecommerce report 2013 -  light version
Europe B2C Ecommerce report 2013 - light versionMarja Ruigrok
 
How to Leverage Google Analytics for Digital Marketing Success
How to Leverage Google Analytics for Digital Marketing SuccessHow to Leverage Google Analytics for Digital Marketing Success
How to Leverage Google Analytics for Digital Marketing SuccessDerek Edmond
 
PPC Audit Sample & AdWords Review from Markitors
PPC Audit Sample & AdWords Review from MarkitorsPPC Audit Sample & AdWords Review from Markitors
PPC Audit Sample & AdWords Review from MarkitorsBrett Farmiloe
 
Increasing Visibility on the Amazon Marketplace
Increasing Visibility on the Amazon MarketplaceIncreasing Visibility on the Amazon Marketplace
Increasing Visibility on the Amazon MarketplaceTinuiti
 
Maximizing Your Amazon Product Discoverability Via Content Optimization
Maximizing Your Amazon Product Discoverability Via Content OptimizationMaximizing Your Amazon Product Discoverability Via Content Optimization
Maximizing Your Amazon Product Discoverability Via Content OptimizationTinuiti
 
Quarterly Business Review Template - QBR Template - Customer Success Management
Quarterly Business Review Template - QBR Template - Customer Success ManagementQuarterly Business Review Template - QBR Template - Customer Success Management
Quarterly Business Review Template - QBR Template - Customer Success ManagementGainsight
 
Quarterly Business Review Template
Quarterly Business Review TemplateQuarterly Business Review Template
Quarterly Business Review TemplateOpsPanda
 
Analytics Trends 2016: The next evolution
Analytics Trends 2016: The next evolutionAnalytics Trends 2016: The next evolution
Analytics Trends 2016: The next evolutionDeloitte United States
 

Viewers also liked (15)

September 11 quarterly report (final)
September 11 quarterly report (final)September 11 quarterly report (final)
September 11 quarterly report (final)
 
Quarterly Market Review: Q4 2015
Quarterly Market Review: Q4 2015Quarterly Market Review: Q4 2015
Quarterly Market Review: Q4 2015
 
1st Quarter 2014 Performance of the Global 60 Equity -40 Fixed Income
1st Quarter 2014 Performance of the Global 60 Equity -40 Fixed Income1st Quarter 2014 Performance of the Global 60 Equity -40 Fixed Income
1st Quarter 2014 Performance of the Global 60 Equity -40 Fixed Income
 
Presentation of Quarterly Report_Deborah Ighagbon
Presentation of Quarterly Report_Deborah IghagbonPresentation of Quarterly Report_Deborah Ighagbon
Presentation of Quarterly Report_Deborah Ighagbon
 
Cdas 2012, lilian edwards and edina harbinja
Cdas 2012, lilian edwards and edina harbinjaCdas 2012, lilian edwards and edina harbinja
Cdas 2012, lilian edwards and edina harbinja
 
Emerce Performance 2014 -- Analytics Ninja
Emerce Performance 2014 -- Analytics NinjaEmerce Performance 2014 -- Analytics Ninja
Emerce Performance 2014 -- Analytics Ninja
 
Getting Actionable Insights From Tracking Users in Ecommerce
Getting Actionable Insights From Tracking Users in EcommerceGetting Actionable Insights From Tracking Users in Ecommerce
Getting Actionable Insights From Tracking Users in Ecommerce
 
Europe B2C Ecommerce report 2013 - light version
Europe B2C Ecommerce report 2013 -  light versionEurope B2C Ecommerce report 2013 -  light version
Europe B2C Ecommerce report 2013 - light version
 
How to Leverage Google Analytics for Digital Marketing Success
How to Leverage Google Analytics for Digital Marketing SuccessHow to Leverage Google Analytics for Digital Marketing Success
How to Leverage Google Analytics for Digital Marketing Success
 
PPC Audit Sample & AdWords Review from Markitors
PPC Audit Sample & AdWords Review from MarkitorsPPC Audit Sample & AdWords Review from Markitors
PPC Audit Sample & AdWords Review from Markitors
 
Increasing Visibility on the Amazon Marketplace
Increasing Visibility on the Amazon MarketplaceIncreasing Visibility on the Amazon Marketplace
Increasing Visibility on the Amazon Marketplace
 
Maximizing Your Amazon Product Discoverability Via Content Optimization
Maximizing Your Amazon Product Discoverability Via Content OptimizationMaximizing Your Amazon Product Discoverability Via Content Optimization
Maximizing Your Amazon Product Discoverability Via Content Optimization
 
Quarterly Business Review Template - QBR Template - Customer Success Management
Quarterly Business Review Template - QBR Template - Customer Success ManagementQuarterly Business Review Template - QBR Template - Customer Success Management
Quarterly Business Review Template - QBR Template - Customer Success Management
 
Quarterly Business Review Template
Quarterly Business Review TemplateQuarterly Business Review Template
Quarterly Business Review Template
 
Analytics Trends 2016: The next evolution
Analytics Trends 2016: The next evolutionAnalytics Trends 2016: The next evolution
Analytics Trends 2016: The next evolution
 

Similar to Google analytics

Google analytics behavior report - LetsDigital With Mahesh Gangurde
Google analytics behavior report - LetsDigital With Mahesh GangurdeGoogle analytics behavior report - LetsDigital With Mahesh Gangurde
Google analytics behavior report - LetsDigital With Mahesh GangurdeMahesh Gangurde
 
Complete Google analytics document
Complete Google analytics documentComplete Google analytics document
Complete Google analytics documentParshuram Yadav
 
An Introduction to Web Analytics
An Introduction to Web AnalyticsAn Introduction to Web Analytics
An Introduction to Web Analyticsiexpertsforum
 
Website Analytics
Website AnalyticsWebsite Analytics
Website AnalyticsCapturly
 
HOW TO USE GOOGLE ANALYTICS BEHAVIOR TO OPTIMIZE YOUR CONTENT
HOW TO USE GOOGLE ANALYTICS BEHAVIOR TO OPTIMIZE YOUR CONTENTHOW TO USE GOOGLE ANALYTICS BEHAVIOR TO OPTIMIZE YOUR CONTENT
HOW TO USE GOOGLE ANALYTICS BEHAVIOR TO OPTIMIZE YOUR CONTENTJoseph Rivera
 
Web analytics an intro
Web analytics   an introWeb analytics   an intro
Web analytics an introAshokkumar T A
 
web metric glossary omniture
web metric glossary omnitureweb metric glossary omniture
web metric glossary omnitureLalitendu Sahoo
 
Google Search Console Tutorial | How To Use Google Search Console For SEO ? |...
Google Search Console Tutorial | How To Use Google Search Console For SEO ? |...Google Search Console Tutorial | How To Use Google Search Console For SEO ? |...
Google Search Console Tutorial | How To Use Google Search Console For SEO ? |...Simplilearn
 
Google Analytics Workshop 2013
Google Analytics Workshop 2013Google Analytics Workshop 2013
Google Analytics Workshop 2013Milad Safarzadeh
 
Omniturebasicsv1 100622051011-phpapp02
Omniturebasicsv1 100622051011-phpapp02Omniturebasicsv1 100622051011-phpapp02
Omniturebasicsv1 100622051011-phpapp02RAKESH RANJAN MANSINGH
 
Score google analytics
Score   google analyticsScore   google analytics
Score google analyticsHotTopics114
 
Career Website Analytics - Webinar by J Walter Thompson INSIDE
Career Website Analytics - Webinar by J Walter Thompson INSIDECareer Website Analytics - Webinar by J Walter Thompson INSIDE
Career Website Analytics - Webinar by J Walter Thompson INSIDEJWTINSIDE
 
AN INTRODUCTION ABOUT GOOGLE ANALYITICS
AN INTRODUCTION ABOUT GOOGLE ANALYITICS AN INTRODUCTION ABOUT GOOGLE ANALYITICS
AN INTRODUCTION ABOUT GOOGLE ANALYITICS Chandra sai Satyavarapu
 
Hotjar vs Google Analytics.pdf
Hotjar vs Google Analytics.pdfHotjar vs Google Analytics.pdf
Hotjar vs Google Analytics.pdfAmruta Relekar
 
Google analytics-seo-meetup
Google analytics-seo-meetupGoogle analytics-seo-meetup
Google analytics-seo-meetupMark Barrera
 

Similar to Google analytics (20)

Google analytics behavior report - LetsDigital With Mahesh Gangurde
Google analytics behavior report - LetsDigital With Mahesh GangurdeGoogle analytics behavior report - LetsDigital With Mahesh Gangurde
Google analytics behavior report - LetsDigital With Mahesh Gangurde
 
Complete Google analytics document
Complete Google analytics documentComplete Google analytics document
Complete Google analytics document
 
Web Analytics Basics
Web Analytics BasicsWeb Analytics Basics
Web Analytics Basics
 
An Introduction to Web Analytics
An Introduction to Web AnalyticsAn Introduction to Web Analytics
An Introduction to Web Analytics
 
Google Analytics ppt
Google Analytics  pptGoogle Analytics  ppt
Google Analytics ppt
 
analytics.pptx
analytics.pptxanalytics.pptx
analytics.pptx
 
Website Analytics
Website AnalyticsWebsite Analytics
Website Analytics
 
HOW TO USE GOOGLE ANALYTICS BEHAVIOR TO OPTIMIZE YOUR CONTENT
HOW TO USE GOOGLE ANALYTICS BEHAVIOR TO OPTIMIZE YOUR CONTENTHOW TO USE GOOGLE ANALYTICS BEHAVIOR TO OPTIMIZE YOUR CONTENT
HOW TO USE GOOGLE ANALYTICS BEHAVIOR TO OPTIMIZE YOUR CONTENT
 
Web analytics an intro
Web analytics   an introWeb analytics   an intro
Web analytics an intro
 
web metric glossary omniture
web metric glossary omnitureweb metric glossary omniture
web metric glossary omniture
 
Google Search Console Tutorial | How To Use Google Search Console For SEO ? |...
Google Search Console Tutorial | How To Use Google Search Console For SEO ? |...Google Search Console Tutorial | How To Use Google Search Console For SEO ? |...
Google Search Console Tutorial | How To Use Google Search Console For SEO ? |...
 
Google Analytics Workshop 2013
Google Analytics Workshop 2013Google Analytics Workshop 2013
Google Analytics Workshop 2013
 
Omniturebasicsv1 100622051011-phpapp02
Omniturebasicsv1 100622051011-phpapp02Omniturebasicsv1 100622051011-phpapp02
Omniturebasicsv1 100622051011-phpapp02
 
Score google analytics
Score   google analyticsScore   google analytics
Score google analytics
 
Google seo tools
Google seo toolsGoogle seo tools
Google seo tools
 
Career Website Analytics - Webinar by J Walter Thompson INSIDE
Career Website Analytics - Webinar by J Walter Thompson INSIDECareer Website Analytics - Webinar by J Walter Thompson INSIDE
Career Website Analytics - Webinar by J Walter Thompson INSIDE
 
AN INTRODUCTION ABOUT GOOGLE ANALYITICS
AN INTRODUCTION ABOUT GOOGLE ANALYITICS AN INTRODUCTION ABOUT GOOGLE ANALYITICS
AN INTRODUCTION ABOUT GOOGLE ANALYITICS
 
Google Analytics
Google Analytics Google Analytics
Google Analytics
 
Hotjar vs Google Analytics.pdf
Hotjar vs Google Analytics.pdfHotjar vs Google Analytics.pdf
Hotjar vs Google Analytics.pdf
 
Google analytics-seo-meetup
Google analytics-seo-meetupGoogle analytics-seo-meetup
Google analytics-seo-meetup
 

Recently uploaded

Dubai Call Girls Wifey O52&786472 Call Girls Dubai
Dubai Call Girls Wifey O52&786472 Call Girls DubaiDubai Call Girls Wifey O52&786472 Call Girls Dubai
Dubai Call Girls Wifey O52&786472 Call Girls Dubaihf8803863
 
Industrialised data - the key to AI success.pdf
Industrialised data - the key to AI success.pdfIndustrialised data - the key to AI success.pdf
Industrialised data - the key to AI success.pdfLars Albertsson
 
VIP High Profile Call Girls Amravati Aarushi 8250192130 Independent Escort Se...
VIP High Profile Call Girls Amravati Aarushi 8250192130 Independent Escort Se...VIP High Profile Call Girls Amravati Aarushi 8250192130 Independent Escort Se...
VIP High Profile Call Girls Amravati Aarushi 8250192130 Independent Escort Se...Suhani Kapoor
 
B2 Creative Industry Response Evaluation.docx
B2 Creative Industry Response Evaluation.docxB2 Creative Industry Response Evaluation.docx
B2 Creative Industry Response Evaluation.docxStephen266013
 
Call Girls In Mahipalpur O9654467111 Escorts Service
Call Girls In Mahipalpur O9654467111  Escorts ServiceCall Girls In Mahipalpur O9654467111  Escorts Service
Call Girls In Mahipalpur O9654467111 Escorts ServiceSapana Sha
 
Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...
Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...
Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...dajasot375
 
VIP High Class Call Girls Bikaner Anushka 8250192130 Independent Escort Servi...
VIP High Class Call Girls Bikaner Anushka 8250192130 Independent Escort Servi...VIP High Class Call Girls Bikaner Anushka 8250192130 Independent Escort Servi...
VIP High Class Call Girls Bikaner Anushka 8250192130 Independent Escort Servi...Suhani Kapoor
 
dokumen.tips_chapter-4-transient-heat-conduction-mehmet-kanoglu.ppt
dokumen.tips_chapter-4-transient-heat-conduction-mehmet-kanoglu.pptdokumen.tips_chapter-4-transient-heat-conduction-mehmet-kanoglu.ppt
dokumen.tips_chapter-4-transient-heat-conduction-mehmet-kanoglu.pptSonatrach
 
100-Concepts-of-AI by Anupama Kate .pptx
100-Concepts-of-AI by Anupama Kate .pptx100-Concepts-of-AI by Anupama Kate .pptx
100-Concepts-of-AI by Anupama Kate .pptxAnupama Kate
 
Schema on read is obsolete. Welcome metaprogramming..pdf
Schema on read is obsolete. Welcome metaprogramming..pdfSchema on read is obsolete. Welcome metaprogramming..pdf
Schema on read is obsolete. Welcome metaprogramming..pdfLars Albertsson
 
VIP Call Girls in Amravati Aarohi 8250192130 Independent Escort Service Amravati
VIP Call Girls in Amravati Aarohi 8250192130 Independent Escort Service AmravatiVIP Call Girls in Amravati Aarohi 8250192130 Independent Escort Service Amravati
VIP Call Girls in Amravati Aarohi 8250192130 Independent Escort Service AmravatiSuhani Kapoor
 
Market Analysis in the 5 Largest Economic Countries in Southeast Asia.pdf
Market Analysis in the 5 Largest Economic Countries in Southeast Asia.pdfMarket Analysis in the 5 Largest Economic Countries in Southeast Asia.pdf
Market Analysis in the 5 Largest Economic Countries in Southeast Asia.pdfRachmat Ramadhan H
 
定制英国白金汉大学毕业证(UCB毕业证书) 成绩单原版一比一
定制英国白金汉大学毕业证(UCB毕业证书)																			成绩单原版一比一定制英国白金汉大学毕业证(UCB毕业证书)																			成绩单原版一比一
定制英国白金汉大学毕业证(UCB毕业证书) 成绩单原版一比一ffjhghh
 
Saket, (-DELHI )+91-9654467111-(=)CHEAP Call Girls in Escorts Service Saket C...
Saket, (-DELHI )+91-9654467111-(=)CHEAP Call Girls in Escorts Service Saket C...Saket, (-DELHI )+91-9654467111-(=)CHEAP Call Girls in Escorts Service Saket C...
Saket, (-DELHI )+91-9654467111-(=)CHEAP Call Girls in Escorts Service Saket C...Sapana Sha
 
04242024_CCC TUG_Joins and Relationships
04242024_CCC TUG_Joins and Relationships04242024_CCC TUG_Joins and Relationships
04242024_CCC TUG_Joins and Relationshipsccctableauusergroup
 
FESE Capital Markets Fact Sheet 2024 Q1.pdf
FESE Capital Markets Fact Sheet 2024 Q1.pdfFESE Capital Markets Fact Sheet 2024 Q1.pdf
FESE Capital Markets Fact Sheet 2024 Q1.pdfMarinCaroMartnezBerg
 
High Class Call Girls Noida Sector 39 Aarushi 🔝8264348440🔝 Independent Escort...
High Class Call Girls Noida Sector 39 Aarushi 🔝8264348440🔝 Independent Escort...High Class Call Girls Noida Sector 39 Aarushi 🔝8264348440🔝 Independent Escort...
High Class Call Girls Noida Sector 39 Aarushi 🔝8264348440🔝 Independent Escort...soniya singh
 
代办国外大学文凭《原版美国UCLA文凭证书》加州大学洛杉矶分校毕业证制作成绩单修改
代办国外大学文凭《原版美国UCLA文凭证书》加州大学洛杉矶分校毕业证制作成绩单修改代办国外大学文凭《原版美国UCLA文凭证书》加州大学洛杉矶分校毕业证制作成绩单修改
代办国外大学文凭《原版美国UCLA文凭证书》加州大学洛杉矶分校毕业证制作成绩单修改atducpo
 
꧁❤ Greater Noida Call Girls Delhi ❤꧂ 9711199171 ☎️ Hard And Sexy Vip Call
꧁❤ Greater Noida Call Girls Delhi ❤꧂ 9711199171 ☎️ Hard And Sexy Vip Call꧁❤ Greater Noida Call Girls Delhi ❤꧂ 9711199171 ☎️ Hard And Sexy Vip Call
꧁❤ Greater Noida Call Girls Delhi ❤꧂ 9711199171 ☎️ Hard And Sexy Vip Callshivangimorya083
 

Recently uploaded (20)

Dubai Call Girls Wifey O52&786472 Call Girls Dubai
Dubai Call Girls Wifey O52&786472 Call Girls DubaiDubai Call Girls Wifey O52&786472 Call Girls Dubai
Dubai Call Girls Wifey O52&786472 Call Girls Dubai
 
Industrialised data - the key to AI success.pdf
Industrialised data - the key to AI success.pdfIndustrialised data - the key to AI success.pdf
Industrialised data - the key to AI success.pdf
 
VIP High Profile Call Girls Amravati Aarushi 8250192130 Independent Escort Se...
VIP High Profile Call Girls Amravati Aarushi 8250192130 Independent Escort Se...VIP High Profile Call Girls Amravati Aarushi 8250192130 Independent Escort Se...
VIP High Profile Call Girls Amravati Aarushi 8250192130 Independent Escort Se...
 
꧁❤ Aerocity Call Girls Service Aerocity Delhi ❤꧂ 9999965857 ☎️ Hard And Sexy ...
꧁❤ Aerocity Call Girls Service Aerocity Delhi ❤꧂ 9999965857 ☎️ Hard And Sexy ...꧁❤ Aerocity Call Girls Service Aerocity Delhi ❤꧂ 9999965857 ☎️ Hard And Sexy ...
꧁❤ Aerocity Call Girls Service Aerocity Delhi ❤꧂ 9999965857 ☎️ Hard And Sexy ...
 
B2 Creative Industry Response Evaluation.docx
B2 Creative Industry Response Evaluation.docxB2 Creative Industry Response Evaluation.docx
B2 Creative Industry Response Evaluation.docx
 
Call Girls In Mahipalpur O9654467111 Escorts Service
Call Girls In Mahipalpur O9654467111  Escorts ServiceCall Girls In Mahipalpur O9654467111  Escorts Service
Call Girls In Mahipalpur O9654467111 Escorts Service
 
Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...
Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...
Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...
 
VIP High Class Call Girls Bikaner Anushka 8250192130 Independent Escort Servi...
VIP High Class Call Girls Bikaner Anushka 8250192130 Independent Escort Servi...VIP High Class Call Girls Bikaner Anushka 8250192130 Independent Escort Servi...
VIP High Class Call Girls Bikaner Anushka 8250192130 Independent Escort Servi...
 
dokumen.tips_chapter-4-transient-heat-conduction-mehmet-kanoglu.ppt
dokumen.tips_chapter-4-transient-heat-conduction-mehmet-kanoglu.pptdokumen.tips_chapter-4-transient-heat-conduction-mehmet-kanoglu.ppt
dokumen.tips_chapter-4-transient-heat-conduction-mehmet-kanoglu.ppt
 
100-Concepts-of-AI by Anupama Kate .pptx
100-Concepts-of-AI by Anupama Kate .pptx100-Concepts-of-AI by Anupama Kate .pptx
100-Concepts-of-AI by Anupama Kate .pptx
 
Schema on read is obsolete. Welcome metaprogramming..pdf
Schema on read is obsolete. Welcome metaprogramming..pdfSchema on read is obsolete. Welcome metaprogramming..pdf
Schema on read is obsolete. Welcome metaprogramming..pdf
 
VIP Call Girls in Amravati Aarohi 8250192130 Independent Escort Service Amravati
VIP Call Girls in Amravati Aarohi 8250192130 Independent Escort Service AmravatiVIP Call Girls in Amravati Aarohi 8250192130 Independent Escort Service Amravati
VIP Call Girls in Amravati Aarohi 8250192130 Independent Escort Service Amravati
 
Market Analysis in the 5 Largest Economic Countries in Southeast Asia.pdf
Market Analysis in the 5 Largest Economic Countries in Southeast Asia.pdfMarket Analysis in the 5 Largest Economic Countries in Southeast Asia.pdf
Market Analysis in the 5 Largest Economic Countries in Southeast Asia.pdf
 
定制英国白金汉大学毕业证(UCB毕业证书) 成绩单原版一比一
定制英国白金汉大学毕业证(UCB毕业证书)																			成绩单原版一比一定制英国白金汉大学毕业证(UCB毕业证书)																			成绩单原版一比一
定制英国白金汉大学毕业证(UCB毕业证书) 成绩单原版一比一
 
Saket, (-DELHI )+91-9654467111-(=)CHEAP Call Girls in Escorts Service Saket C...
Saket, (-DELHI )+91-9654467111-(=)CHEAP Call Girls in Escorts Service Saket C...Saket, (-DELHI )+91-9654467111-(=)CHEAP Call Girls in Escorts Service Saket C...
Saket, (-DELHI )+91-9654467111-(=)CHEAP Call Girls in Escorts Service Saket C...
 
04242024_CCC TUG_Joins and Relationships
04242024_CCC TUG_Joins and Relationships04242024_CCC TUG_Joins and Relationships
04242024_CCC TUG_Joins and Relationships
 
FESE Capital Markets Fact Sheet 2024 Q1.pdf
FESE Capital Markets Fact Sheet 2024 Q1.pdfFESE Capital Markets Fact Sheet 2024 Q1.pdf
FESE Capital Markets Fact Sheet 2024 Q1.pdf
 
High Class Call Girls Noida Sector 39 Aarushi 🔝8264348440🔝 Independent Escort...
High Class Call Girls Noida Sector 39 Aarushi 🔝8264348440🔝 Independent Escort...High Class Call Girls Noida Sector 39 Aarushi 🔝8264348440🔝 Independent Escort...
High Class Call Girls Noida Sector 39 Aarushi 🔝8264348440🔝 Independent Escort...
 
代办国外大学文凭《原版美国UCLA文凭证书》加州大学洛杉矶分校毕业证制作成绩单修改
代办国外大学文凭《原版美国UCLA文凭证书》加州大学洛杉矶分校毕业证制作成绩单修改代办国外大学文凭《原版美国UCLA文凭证书》加州大学洛杉矶分校毕业证制作成绩单修改
代办国外大学文凭《原版美国UCLA文凭证书》加州大学洛杉矶分校毕业证制作成绩单修改
 
꧁❤ Greater Noida Call Girls Delhi ❤꧂ 9711199171 ☎️ Hard And Sexy Vip Call
꧁❤ Greater Noida Call Girls Delhi ❤꧂ 9711199171 ☎️ Hard And Sexy Vip Call꧁❤ Greater Noida Call Girls Delhi ❤꧂ 9711199171 ☎️ Hard And Sexy Vip Call
꧁❤ Greater Noida Call Girls Delhi ❤꧂ 9711199171 ☎️ Hard And Sexy Vip Call
 

Google analytics

  • 1. Google Analytics What is web analytics? Web analytics is measurement, collection, analysis and reporting of web data for purpose of understanding web usage. Web analytics not only used as tool to measure web traffic but can also be used as tool for business and market research and to assess and improve effectiveness of website. Analytics Tools There are differenttoolsavailableinthe markettotrack andanalyze the webtrafficanduserinteraction. Sr.no Tool 1. Google Analytics 2. Google Website Optimizer 3. Piwik 4. Open web analytics 5. Woopra 6. Mint 7. Clicky 8. Kissmetrics 9. CrazzyEgg 10. Site Meter From all above listedtools, Google Analyticsisthe mostpopularand commonlyusedtool toanalyze the web traffic and different user interactions. In subsequent sections, we will have detailed overview about Google Analytics. Google Analytics Google analyticsisthe free analyticstool usedto whichprovidesstatisticsforwebsite.Ithelpstoanalyze the web traffic as well as different user interactions. To get started with Google analytics, you first need to set up Google analytics account. 1. Create a newGoogle analyticsaccount if you do not have. Visitgoogle.com/analytics.Thenclick Access Google Analytics or Create an account button and follow the instructions. 2. Set up the property
  • 2. Once youfinishedconfiguration,click“GetTrackingCode”and youwillget the trackingcode.Just copy and paste the tracking code into every web page where you want to track.
  • 3. Once youaddedthe tracking code to yourweb site Google analyticswill startcollectingdatafor your website. The JavaScript snippet above will record page views for every page on your site containing the code. Page Tracking Page tracking allows you to measure number of views for a particular page on your website. For a website, you might want to track page when large portion of screen changes. For example, you can track the page when the user goes from home screen to contact screen. The defaultJavaScriptsnippetforanalytics.jscontainsapage trackingcall.Sowhenyouinstall the tracking code, it will automatically start tracking the page. There are 3 fields that can be sent with tracking code. Value Type Required Description Location String No Url of the page to be tracked Page String No The page pathandquerystringof the page(ex:/homepage?id=10) Title String No The title of the page(ex:homepage) To send a pageview, pass the ‘ga’ function ‘send’ command with the ‘pageview’ hit type. ga(‘send’,’pageview’); When this command is executed the analytics.js library sets the title value using document.title browserproperty. The libraryalsosetsthe locationvalueusingthe followingbrowserproperties. Once calculated, locationvalue senttoGoogle Analyticsservers whererestof the page valuesset. var location= window.location.protocol + ‘//’+window.location.hostname+ window.location.pathname + window.location.search;
  • 4. You can override the defaultvalues.To override the default page values you can pass additional Parameters to ga command. ga(‘send’,’pageview’,{ ‘page’:’/contact’, ‘title’:’Contact’ }) To see reports goto “Reports” tab. Google analytics reports lets you access the performance of your website content and actions usertakesonwebsite. The behaviorsection inanalyticsreports providesinformationaboutwhat your visitors do on your website. You can access the behavior reports using the menu in the left side bar of Google analytics dashboard.
  • 5. There are total nine separate reporting sections and tools under Behavior in your website’s Google analytics profile. 1. Overview The overviewreportprovidesagraphshowingamountof trafficyour website receivesandsome additional metrics.
  • 6. Brief description of data in behavior overview report a. Pageviews:The total numberof pagesviewed. Thisnumberincludesthe repeatedviewsof a single page.Inother words,single person may view the same page multiple times and each view is counted as page view. b. Unique Pageviews:The numberof individual people whohaveviewedaspecificpage atleast once during the visit. c. Avg. Time on Page: The average amount of time user spends on viewing specific page or screen or set of pages. d. Bounce Rate: The percentage of single-page visits or number of visits in which people left your website fromthe same page they enteredon.For example,if youvisita page and then leave, that is counted as bounce. e. % Exit: The percentage of users who exit from a page or set of pages. 2. Behavior Flow The behaviorreportletsyou see the path visitorscommonlytake onyour website-fromthe first page they view to the last page they visit before leaving your website.
  • 7. 3. Site Content The site contentreportshowsthe following reportswhichshowshow people engage withpages on your website.  All Pages: The all pagesreportdisplaysthe toppagedof website basedonwebtraffic.Italsoshows each page’s pageview, unique Pageviews, average time on page, bounce rate, %exit  Content Drilldown The content drilldown report is helpful for the website having subfolders such as domain.org/support, domain.org/Help etc. This report also allows you to see top folders of content on your site and top content within those folders.  Landing Pages The landing pages report shows the top pages on your website where visitors enter.
  • 8.  Exit Pages The exit pages report shows last pages people visit before exiting your website. 4. Site Speed The site speed reports show some crucial reports which helps you to identify the areas where your website needs to optimize. 4.1 Site Speed Overview The site speed overview report displays a graph of average load time for all the pages Brief description of the metrics that you will find in Site speed overview 4.1.1 Avg. Page Load Time
  • 9. The average amount of time it takes for page to load from initiation of pageview(ex: user clicks on a page link) to load completion in a browser. 4.1.2 Avg. Redirection Time The average amount of time spent in redirects before fetching a page. 4.1.3 Avg. Domain Lookup Time The average amount of time spent in DNS lookup for a page. 4.1.4 Avg. Server Connection Time The average amount of time spent establishing TCP connection for a page. 4.1.5 Avg. Server Response Time The average amount of time your server takes to respond to user request, including the network time from the users location to your server. 4.1.6 Avg. Page Download Time The average amount of time to download a page 4.2 Page Timings The page timingreportdisplayshow longyourmost visitedpagestake toload compared to overall average load time for your website. 4.3 Speed Suggestions The speedsuggestionsreportgivesdetailedinformationonhow tooptimizethe pageson your website. 4.4 User timing User timing shows performance information specific to your site.
  • 10. Note:To use usertimingreports,youneedtoimplementcustom code on your website. User timingsallowdeveloperstomeasure periodsof time usinganalytics.jslibrary.Thisis Particularly useful for developers to measure the latency, or time spent, making AJAX requests, loading web resources. User timing are measured using the following fields: Value Type Required Description timingCategory String Yes A stringforcategorizing all usertimingvariables into logical groups(ex: web service call) timingVar String Yes A string to identifythe variable beingrecorded (ex: JavaScript load) timingValue Number Yes The number of milliseconds in elapsed time to report to Google Analytics (ex:20ms) timingLabel String No A string that can be used add flexibility in visualizing user timings in reports (ex: Url for web service) Implementation To send the user timing data use “ga” function and pass “send” command with the “timing” hit type. ga('send', 'timing', 'timingCategory', 'timingVar', timingValue); ga("send", "timing", "Services/abc/currentUserName", "Ajax Get Request Call", 232) where: “Services/abc/currentUserName” is a timing category “Ajax Request call” is a timing variable “232” is a timing value For more information:
  • 11. https://developers.google.com/analytics/devguides/collection/analyticsjs/user- timings 5. Site Search If you have search engine on your website which visitors can use to search the site, you can measure the usage of this search functionality.The results you can find under the site Search Category in Google Analytics. To enable site search follow the steps below: Site search consists of:
  • 12.  Overview The site search overview report displays overall metrics for the visitors who use search box on your website.  Usage The usage report breaks down the number of visits where someone used search box in your website versus the number of visits where the search box wasn’t used.  Search Terms The search term reportdisplayskeywordsenteredintoyourwebsitessearchbox.Along with the terms, it also shows metrics for total number of searches, % search exits and additional details about visits related to search terms.  Pages The Pagesreportdisplaysthe same metricsmentionedaboveforsearchterms,butinthis case the metricsare focusedonpageswhere searchesoriginated 6. Events The events section in Google Analytics allows you to track the specific user interaction on your website such as clicks on external links, file downloads, video plays etc. To use events reporting you need to setup the events tracking code in your web site.  Setting event tracking code Event tracking allows to measure how user interacts with content of your web site. For example, you might want to track how many times a buttons was pressed. An event consists of following fields: Value Type Required Description Category String Yes The object that was interacted with(ex: button) Action String Yes Type of interaction (ex: click) Label String No Useful forcategorizingevents(ex: nav buttions) Value Number No Useful to pass counts(ex:4 times) Implementation To send an event, pass “ga” function the “send” command with “event” hit type ga(‘send’,’event’,’category’,’action’) Ex: ga(‘send’,’event’,’User Actions’,’DownloadDocument’) Where; User Actions is event category DownloadDocument is event action Once you are done with setting event tracking code in your website, you can see the Following reports in Google analytics 6.1 Events Overview
  • 13. The eventsoverviewreportdisplaysthe summaryof visitorinteractions you are tracking on yourwebsite.The reportshowsnumberof eventsbasedonevent category, action, label. 6.2 Top Events The top eventreportdisplaysthe events with most user interaction. For example, if you are tracking “UserAction”onyourwebsite usingthe eventtrackingcode thenyoucanclickon User Actions from this report to see specific links that visitors are clicking on when they leave your website. 6.3 Pages The pagesreportshows the top pageswhere visitorsinteractwiththe eventsyouare tracking.
  • 14. 6.4 Events Flow The events flow report displays the path visitors take on your website from where they arrive to when they interact with your event. 7. AdSense Google AdSenseprovidesafree,flexiblewaytoearnmoneyfromyourwebsites,mobile sitesand site search results with relevant and engaging data. To use AdSense reports you must link your Google AdSense Account to Google Analytics Account. For more details: https://developers.google.com/adsense/ 8. Experiments Experiments in Google analytics allow you to conduct simple testing to see which landing page variations performs best at meeting specific conversion goals. For more details on Experiments: https://developers.google.com/analytics/devguides/platform/experiments-overview
  • 15. 9. In-Page Analytics In-page analytics feature enables you to view your web page along with your Google Analytics data. To use this feature, you must install Page Analytics Google Chrome Extension.