thankful-scientist-83252
11/23/2022, 12:40 AMPercent of traffic included in this experiment
to narrow it down to only 50% of eligible users go into the test.
Now i want to make this mutually exclusive with something else at a 50-50 split. I set up a namespace and gave am thinking of giving experiment A 50% of the namespace and then setting Percent of traffic included in this experiment
to 100%. Would this yield the same result? Will I inadvertently change which bin people are going to by switching to a namespace? Thanks!fresh-football-47124
future-teacher-7046
thankful-scientist-83252
11/23/2022, 7:30 PMadding a namespace will change which users are part of the experiment, but it won't cause anyone to switch variations.Do you mean it will change what bucket an incremental user goes into but existing users who are already in the variant will stay? Also yes, will certainly try to use namespaces at the start vs midway through in the future
future-teacher-7046
helpful-hydrogen-62495
11/23/2022, 10:42 PMfuture-teacher-7046
const feature1 = growthbook.evalFeature("my-feature");
if (!feature1.experiment) {
const feature2 = growthbook.evalFeature("my-other-feature")
}
So keep the original test as 50% of traffic. Set the other test as 100%. The other test will only be run if the user is part of the 50% not in the first test.helpful-hydrogen-62495
11/24/2022, 3:35 PM