when I define a segment on AA, I thought the difference between picking the Visit vs Hit is the visit will include all the records in that visit while hit only includes the matching records. However, I do see the visit coverage also changed for some reason: If I change this example segment from Hit to Visit, the visit coverage changed from 115 to 158 on the top right stats panel. I'm wondering why this would happen? My assumption was the two settings should yield the same visit coverage.
Solved! Go to Solution.
Views
Replies
Total Likes
For the HIT all of the rules needs to be TRUE in the HIT itself. So only visits where ALL the rules are met in SAME HIT will be picked up.
For the VISIT all the rules needs to be TRUE during the VISIT lifetime so one or more HIT can contain one or more rule to be TRUE.
i.e :
RULE 1 evar1 = 123
AND
RULE2 evar 2 =123
AND
RULE 3 evar3 = 123
VISIT 1
HIT1 evar1=234,evar2=123,evar3=123
HIT2 evar1=aaa,evar2=aaa,evar3=aaa
HIT3 evar1=123,evar2=aaa,evar3=aaa
VISIT 2
HIT1 evar1=123,evar2=123,evar3=123
HIT2 evar1=aaa,evar2=aaa,evar3=aaa
HIT3 evar1=aaa,evar2=aaa,evar3=aaa
VISIT 3
HIT1 evar1=234,evar2=234,evar3=234
HIT2 evar1=aaa,evar2=aaa,evar3=aaa
HIT3 evar1=123,evar2=aaa,evar3=aaa
VISIT 4
HIT1 evar1=123,evar2=234,evar3=234
HIT2 evar1=aaa,evar2=123,evar3=aaa
HIT3 evar1=aaa,evar2=aaa,evar3=123
HIT SEGMENT == 1 VISIT
VISIT1
VISIT2
VISIT3
VISIT4
VISIT SEGMENT == 3
VISIT1
VISIT2
VISIT3
VISIT4
If you modify you VISIT segment to have visit at top and add a container that uses HIT and put all rules inside this container I would think you should get same visits as in segment with top container as being HIT.
Hope this helps
For the HIT all of the rules needs to be TRUE in the HIT itself. So only visits where ALL the rules are met in SAME HIT will be picked up.
For the VISIT all the rules needs to be TRUE during the VISIT lifetime so one or more HIT can contain one or more rule to be TRUE.
i.e :
RULE 1 evar1 = 123
AND
RULE2 evar 2 =123
AND
RULE 3 evar3 = 123
VISIT 1
HIT1 evar1=234,evar2=123,evar3=123
HIT2 evar1=aaa,evar2=aaa,evar3=aaa
HIT3 evar1=123,evar2=aaa,evar3=aaa
VISIT 2
HIT1 evar1=123,evar2=123,evar3=123
HIT2 evar1=aaa,evar2=aaa,evar3=aaa
HIT3 evar1=aaa,evar2=aaa,evar3=aaa
VISIT 3
HIT1 evar1=234,evar2=234,evar3=234
HIT2 evar1=aaa,evar2=aaa,evar3=aaa
HIT3 evar1=123,evar2=aaa,evar3=aaa
VISIT 4
HIT1 evar1=123,evar2=234,evar3=234
HIT2 evar1=aaa,evar2=123,evar3=aaa
HIT3 evar1=aaa,evar2=aaa,evar3=123
HIT SEGMENT == 1 VISIT
VISIT1
VISIT2
VISIT3
VISIT4
VISIT SEGMENT == 3
VISIT1
VISIT2
VISIT3
VISIT4
If you modify you VISIT segment to have visit at top and add a container that uses HIT and put all rules inside this container I would think you should get same visits as in segment with top container as being HIT.
Hope this helps
Awesome, thank you!
Views
Replies
Total Likes