Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Multiple A/B Testing at once? #28

Open
saulamsal opened this issue Oct 18, 2020 · 2 comments
Open

Multiple A/B Testing at once? #28

saulamsal opened this issue Oct 18, 2020 · 2 comments

Comments

@saulamsal
Copy link

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.

@ben182
Copy link
Owner

ben182 commented Nov 17, 2021

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

@saulamsal
Copy link
Author

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?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants