Expand my Community achievements bar.

SOLVED

Entries Calculation

Avatar

Level 1

Hi - I wanted to use adobe data feed to replicate visits and entries using pyspark and then to load into snowflake table. I was able to derive logic for visit by referring below documentation.

 

https://experienceleague.adobe.com/docs/analytics/export/analytics-data-feed/data-feed-contents/data...

 

But i couldn't find to similar document to calculate for entries. Can someone help me?

 

Thanks in advance.

1 Accepted Solution

Avatar

Correct answer by
Employee Advisor

@SN-L 

The ‘Entries’ metric shows the number of times a given dimension item is captured as the first value in a visit. This metric is helpful when you want to understand more about the first impressions visitors have on your site.

https://experienceleague.adobe.com/docs/analytics/components/metrics/entries.html?lang=en

 

That means you would need to look at this logic in data feed 

post_evar should be having a value with visit_page_num =1

This gives you all the first hits when a particular dimension had value

 

Hope this helps

View solution in original post

1 Reply

Avatar

Correct answer by
Employee Advisor

@SN-L 

The ‘Entries’ metric shows the number of times a given dimension item is captured as the first value in a visit. This metric is helpful when you want to understand more about the first impressions visitors have on your site.

https://experienceleague.adobe.com/docs/analytics/components/metrics/entries.html?lang=en

 

That means you would need to look at this logic in data feed 

post_evar should be having a value with visit_page_num =1

This gives you all the first hits when a particular dimension had value

 

Hope this helps