I need to calculate bounces, entries and Single Page Views metric from adobe analytics data feed. A script to calculate would be helpful with relevant fields, tried everything in the community here.
Solved! Go to Solution.
Views
Replies
Total Likes
Raw Data feeds are tricky and require a lot of rules to be applied to use properly.. While I don't work directly with the raw data feeds, I work closely with our data lake team and help them to understand the raw data and process it... so I don't have formulas per se, but I can help with the fields of interest to you.
First, you should make sure that you are using the exclude_hit column to remove data that should not be processed.
Second, you might want to look at only page views (these should be the rows where you have pagename and page_url (or at least where you are looking at Single Page Views.. you would want to see all hits if you are trying to match Adobe's bounce rate definition - more below)
Now visit_page_num should indicate the page number in the visit, so items with 1 should be your entry pages. Each page view should increment this value per user, per visit.
You will need to identify users either by using mcvisid or visid_high and visid_low (it all depends on what data you have). By correlating your visitor identifier with visit_num (which should increment since the beginning of time for that user identification), you should be able to find the visits that have one page view, or multiple page views (using the above visit_page_num).
Hopefully this will get you started, good luck.
Views
Replies
Total Likes
Raw Data feeds are tricky and require a lot of rules to be applied to use properly.. While I don't work directly with the raw data feeds, I work closely with our data lake team and help them to understand the raw data and process it... so I don't have formulas per se, but I can help with the fields of interest to you.
First, you should make sure that you are using the exclude_hit column to remove data that should not be processed.
Second, you might want to look at only page views (these should be the rows where you have pagename and page_url (or at least where you are looking at Single Page Views.. you would want to see all hits if you are trying to match Adobe's bounce rate definition - more below)
Now visit_page_num should indicate the page number in the visit, so items with 1 should be your entry pages. Each page view should increment this value per user, per visit.
You will need to identify users either by using mcvisid or visid_high and visid_low (it all depends on what data you have). By correlating your visitor identifier with visit_num (which should increment since the beginning of time for that user identification), you should be able to find the visits that have one page view, or multiple page views (using the above visit_page_num).
Hopefully this will get you started, good luck.
Views
Replies
Total Likes
Views
Likes
Replies
Views
Likes
Replies