You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was trying to test an uneven split(90-10) by providing weights on alternatives for an experiment and it looks like the weights are not taken into consideration
Hi,
I was trying to test an uneven split(90-10) by providing weights on alternatives for an experiment and it looks like the weights are not taken into consideration
experiment_name = "check_uneven_90_10"
alternatives = [("A", 90), ("B", 10)]
ab_test(experiment_name, *alternatives)
Also tried with
alternatives = [("A", 0.9), ("B", 0.1)]
I am still seeing an even(~50-50) split
Please let me know if I am missing something or I am using this correctly?
Thanks in advance.
The text was updated successfully, but these errors were encountered: