Does anyone have some ideas how to isolate e.g. AB-test from each other. A method to make sure that if a visitors have been exposed for Activity X, then he won't be exposed for Activity Y.
I have tried to find some documentation on Adobe Target Helpsite but without luck!
Solved! Go to Solution.
Audience using Visitor Profile type have an optiont o allow one to include only those visitors which are not other tests.
Alternately, you may create two mutually exclusive testing groups using Profile scripts and using those in Audience.
Profile script may be something like this.
if (!user.get('twoGroups')) {
var random_number=Math.floor(Math.random()*99);
if(random_number <= 49){return 'GroupA';}else{return 'GroupB';}
}
Audience using Visitor Profile type have an optiont o allow one to include only those visitors which are not other tests.
Alternately, you may create two mutually exclusive testing groups using Profile scripts and using those in Audience.
Profile script may be something like this.
if (!user.get('twoGroups')) {
var random_number=Math.floor(Math.random()*99);
if(random_number <= 49){return 'GroupA';}else{return 'GroupB';}
}
Thanks Siddharth.J
Do you have a link to some further documentation from Adobe?
The help page is Profile Script Attributes. However, it does not have examples/sample code. We will come up with documentation for same soon
Views
Likes
Replies