Silly mistake on the variation attribution

This commit is contained in:
uri 2024-12-11 14:52:05 +01:00
parent 814a5bce28
commit 9827e3231c

View file

@ -111,7 +111,7 @@
}, },
{ {
"cell_type": "code", "cell_type": "code",
"execution_count": 27, "execution_count": null,
"metadata": {}, "metadata": {},
"outputs": [], "outputs": [],
"source": [ "source": [
@ -120,8 +120,8 @@
"ab_test_name = \"VerificationProductSelectionButtonPosition\"\n", "ab_test_name = \"VerificationProductSelectionButtonPosition\"\n",
"\n", "\n",
"# Define the variations in which we want to run the tests\n", "# Define the variations in which we want to run the tests\n",
"var_A = 'Fixed' # Ideally, this should be the control group\n", "var_A = 'Relative' # Ideally, this should be the control group\n",
"var_B = 'Relative' # Ideally, this should be the study group\n", "var_B = 'Fixed' # Ideally, this should be the study group\n",
"\n", "\n",
"variations = [var_A, var_B]\n" "variations = [var_A, var_B]\n"
] ]