laravel-ab icon indicating copy to clipboard operation
laravel-ab copied to clipboard

Multiple A/B Testing at once?

Open saulsharma opened this issue 5 years ago • 2 comments

I think there are cases for many when we may want to run multiple experiment at once. For an instance, I may want to pick a font from an array and at the same time pick a different header logo. We can do something like this in ab-testing.php:


$experimentLists= '{

    "font": ["system-font","inter-font"],
    "home-welcome": ["home-welcomeMainTop","home-welcomeTopStories"]
}'; 
   return [ 'experiments' => json_decode($experimentLists)......... ] 

This way, it always pick one item for each array of an experimentLists object.

This would enhance this tool because there are no any other A/B testing tools with this feature.

saulsharma avatar Oct 18 '20 23:10 saulsharma

The problem with this is that you can not really know which experiment is responsible for the goal competition.

ben182 avatar Nov 17 '21 20:11 ben182

The problem with this is that you can not really know which experiment is responsible for the goal competition.

@ben182 I mean I track goals via another method. For example, I'm triggering a third party API URL on the frontend. They will track all the goals I need for example. Any suggestions for a workaround?

saulsharma avatar Dec 04 '21 01:12 saulsharma