Expand my Community achievements bar.

Join us at Adobe Summit 2024 for the Coffee Break Q&A Live series, a unique opportunity to network with and learn from expert users, the Adobe product team, and Adobe partners in a small group, 30 minute AMA conversations.
SOLVED

How does Adobe Analytics count page views and bounces?

Avatar

Level 1

How does Adobe Analytics count page views and bounces?

Anyone can answer me? That would be very much appreciated.

1 Accepted Solution

Avatar

Correct answer by
Level 2

Below you can see that how Adobe analytics counts page views and bounces:-


Page Views:- A trended report that displays the number of times your website pages were viewed for the selected time period (hour, day, week, month, quarter, or year). This report allows you to track page views for each page on your site, as well as an aggregate of page views for your entire site.

Bounces:- Bounces are defined as the number of visits to your site that contain a single image request. Custom links are included, meaning if a visit consists of a page view and a custom link, that visit is not considered a bounce.

May this helps

View solution in original post

4 Replies

Avatar

Correct answer by
Level 2

Below you can see that how Adobe analytics counts page views and bounces:-


Page Views:- A trended report that displays the number of times your website pages were viewed for the selected time period (hour, day, week, month, quarter, or year). This report allows you to track page views for each page on your site, as well as an aggregate of page views for your entire site.

Bounces:- Bounces are defined as the number of visits to your site that contain a single image request. Custom links are included, meaning if a visit consists of a page view and a custom link, that visit is not considered a bounce.

May this helps

Avatar

Level 1

Thank you very much, Roshang.

Sorry, My previous question was not clear enough.

In fact, what I asked is how to make statistics technically, that is, what code or event is sent to let AA background know that this is a pv and this is a single-page visit when there is only one pv.

Thank you again :)

Avatar

Employee

I'm simplifying a bit here, but hopefully this helps....

From a coding perspective, there are two primary ways to send in data to Adobe Analytics.  In javascript, those two methods are:

  • s.t() - page view
  • s.tl() - link call

Those methods determine the "page event" of the hit, which are further defined here:  Page Event Lookup .  Any hit with a page event of 0 is considered a page view.

Bounces are determined during processing as Adobe Analytics evaluates all hits of a particular visit.

Avatar

Level 1

I see. Thank you very much, aaronh.