Skip to main content

Making the Decision

Making a decision for an experiment enables you to 'ship' the winning group to all your users. After you make the decision, the variant that your users see depends on whether you're using a targeting gate for your experiment. The results for your experiment will still be accesible after you make a decision, but they will stop updating. The last day of metrics will be the day you "make a decision" on the experiment.

Experiments With No Targeting Gate

When you ship a group in an experiment with no targeting gate, the parameter values from the shipped group will become the default values for all your users going forward.

If the experiment happens to use parameters from a layer, the layer's parameters will now take on the shipped group's parameter values as their defaults. These are the values that all your users will see going forward.

For example, suppose you have a Demo Layer that's configured with a parameter, a_param. It's default value is set to layer_default as shown below.

image

Say you decide to create an experiment, Demo Experiment in Demo Layer as shown below.

image

You set up Demo Experiment with two groups: Control and Test, intending to experiment with new values for the layer-level parameter, a_param as shown below.

image

Now if you decide to ship the Control group for the Demo Experiment, a_param will take the value set for the Control group as its default: experiment_one_control

image

On the other hand, if you decide to ship the Test group, a_param will take the value set for the Test group as its default: experiment_two_test

image

Experiment With a Targeting Gate

When you decide ship a group in an experiment configured with a targeting gate, you can decide whether to continue targeting after shipping.

  • If you decide to discontinue targeting, the parameter values from the shipped group will become the default values for all your users going forward. If the experiment happens to use parameters from a layer, the layer's parameters will now take on the shipped group's parameter values as their defaults. These are the values that your users will see going forward.
  • If you decide to continue targeting, this will add an override to the experiment layer so that:
    • all users who pass the targeting gate will see shipped group's parameter values
    • all users who fail the targeting gate will see the default value (layer-level parameter defaults or the defaults you set for the parameter in your code)
Shipping with Targeting On

Note that if you decide to continue targeting, shipping a group will not update the default value of any layer parameters.

For example, suppose Demo Experiment in a Demo Layer that has a parameter called targetted_layer_param, whose default value is set to targetted_layer_default_value.

When you decide to ship Demo Experiment, if you discontinue targeting, targetted_layer_param will now take on the value from the Control group, targetted_layer_control, as its default.

image

On the other hand, if you decide to continue targeting, targetted_layer_param will now acquire an override so that:

  • all users who pass the targeting gate will see the overridden value of the parameter
  • all users who fail the targeting gate will see the default value of the parameter

In this case, the default value of targetted_layer_param in Demo Layer will not change. Also, any users who pass the targeting gate will not be eligible for future experiments run in this layer. For this reason, we do not encourage shipping experiments with targeting on, especially when the experiment is in a layer.

image