From 9827e3231ca86009fc58110fb44f047b87c77c1a Mon Sep 17 00:00:00 2001 From: uri Date: Wed, 11 Dec 2024 14:52:05 +0100 Subject: [PATCH] Silly mistake on the variation attribution --- ab_test_guest_journey_monitoring.ipynb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ab_test_guest_journey_monitoring.ipynb b/ab_test_guest_journey_monitoring.ipynb index 1c2a2e5..fe56f13 100644 --- a/ab_test_guest_journey_monitoring.ipynb +++ b/ab_test_guest_journey_monitoring.ipynb @@ -111,7 +111,7 @@ }, { "cell_type": "code", - "execution_count": 27, + "execution_count": null, "metadata": {}, "outputs": [], "source": [ @@ -120,8 +120,8 @@ "ab_test_name = \"VerificationProductSelectionButtonPosition\"\n", "\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_B = 'Relative' # Ideally, this should be the study group\n", + "var_A = 'Relative' # Ideally, this should be the control group\n", + "var_B = 'Fixed' # Ideally, this should be the study group\n", "\n", "variations = [var_A, var_B]\n" ]