Can anyone share thoughts on how to calculate Average number of pages per visit. ( not page views)
Solved! Go to Solution.
Views
Replies
Total Likes
Try this:
1. Create a Calculated Metric with this: APPROX COUNT DISTINCT (Page)
2. Create another Calculated Metric with this: the above calculated metric / Visits
Try this:
1. Create a Calculated Metric with this: APPROX COUNT DISTINCT (Page)
2. Create another Calculated Metric with this: the above calculated metric / Visits
Views
Replies
Total Likes
Views
Replies
Total Likes
Views
Replies
Total Likes
did this end up working for you?
Views
Replies
Total Likes
@bobbytrk_29well, yes, that is a correct result.
Consider this simple example:
Visit 1: viewed pages in this sequence: A, B, C, A
Visit 2: viewed pages in this sequence: A, B, A, B, D
Pages per Visit for:
Page A = (1 + 1) / 2 = 1
Page B = (1 + 1) / 2 = 1
Page C = (1 + 0) / 2 = 0.5
Page D = (0 + 1) / 2 = 0.5
Views
Replies
Total Likes