I am having troubles understanding how Adobe Analytics calculates the totals. I used the API debugger to copy the request. When I sum the response values I get a different (higher) sum from the one in total . I am looking at the metric visits and dimensions daterange .... Any ideas ?
Solved! Go to Solution.
Views
Replies
Total Likes
As I can see the dimension being used is "Page" and applied metric filters like "Day" and "referrer type".
There could be a possibility that a single visit has more than 1 page and all the pages had the same referrer type as it is based on visit container. In report all the pages would be available as separate line item and would be having 1 visit against all the page and referrer type but in total it is actually one visit.
For 1 visitor 1 visit, report would be like:
Page | Visit(Day and referrer type)
-------------------------------------------------------------
Page A | 1 (Feb. 1st, Search Engine)
Page B | 1 (Feb. 1st, Search Engine)
--------------------------------------------------------------
Total | 1
This is happening because of deduplication.
Views
Replies
Total Likes
Thanks for your answer. I am actually requesting the data for the same date. Here is my request
{ "rsid": "xxxxx", "globalFilters": [ { "type": "dateRange", "dateRange": "2022-02-01T00:00:00.000/2022-02-02T00:00:00.000" } ], "metricContainer": { "metrics": [ { "columnId": "0", "id": "metrics/visits", "filters": [ "0", "1" ] } ], "metricFilters": [ { "id": "0", "type": "breakdown", "dimension": "variables/daterangeday", "itemId": "1220101" }, { "id": "1", "type": "breakdown", "dimension": "variables/referrertype", "itemId": "3" } ] }, "dimension": "variables/page", "settings": { "countRepeatInstances": true, "limit": 50000, "page": 0, "nonesBehavior": "return-nones" } }
Not sure why I would have de-duplication if it's for the same date.
Views
Replies
Total Likes
As I can see the dimension being used is "Page" and applied metric filters like "Day" and "referrer type".
There could be a possibility that a single visit has more than 1 page and all the pages had the same referrer type as it is based on visit container. In report all the pages would be available as separate line item and would be having 1 visit against all the page and referrer type but in total it is actually one visit.
For 1 visitor 1 visit, report would be like:
Page | Visit(Day and referrer type)
-------------------------------------------------------------
Page A | 1 (Feb. 1st, Search Engine)
Page B | 1 (Feb. 1st, Search Engine)
--------------------------------------------------------------
Total | 1
Makes sense ! Thank you
Views
Replies
Total Likes
Views
Likes
Replies