🧫  Conversion Rate Uplift

Conversion Rate Uplift#

The increase in conversion rate attributable to a treatment versus control.

Important

✨ AI-generated content. This page was written with the assistance of an AI language model and is provided as a learning aid. Despite careful review, it may still contain mistakes, omissions, or out-of-date information. Whether you are new to the topic, a team lead, or a senior practitioner, treat it as a starting point rather than an authoritative reference: read it critically and independently verify anything you act on (code, commands, figures, and factual claims) against official documentation and primary sources before relying on it.

What it is#

Conversion-rate uplift measures the improvement (or decline) in conversion rate of a treatment (variant) relative to a control (baseline) — the headline success metric of an A/B test. It answers: by how much did the new variant move conversions versus the baseline?

Absolute vs relative#

With \(CR_A\) the control rate and \(CR_B\) the treatment rate, there are two distinct quantities:

\[\text{Absolute uplift} = CR_B - CR_A \ \text{(percentage points)}, \qquad \text{Relative uplift} = \frac{CR_B - CR_A}{CR_A} \times 100\%.\]

Examples#

  • Positive — control 5%, treatment 6%: absolute uplift +1 point, relative uplift \((6-5)/5 = +20\%\).

  • Negative — control 10%, treatment 9.5%: absolute uplift −0.5 point, relative uplift \((9.5-10)/10 = -5\%\).

Why both matter#

The two can tell very different stories: a 1-point absolute uplift sounds tiny, but on a 2% baseline it is a 50% relative improvement. Quoting only one can mislead — report both.

How it drives A/B decisions#

Uplift is the primary metric, and the minimum detectable uplift / effect (MDE) — the smallest effect you want to catch given sample size, \(\alpha\) and power — sets how big the experiment must be. The decision rule: a significant positive uplift → ship; not significant → inconclusive; significant negative → stop or rethink. Whether the uplift is real or just noise is settled by a two-proportion z-test (frequentist) or the posterior probability of uplift (Bayesian).


Theme: A/B Testing & Experimentation  ·  All terminology



See also

Source article Adapted (context, re-expressed) in our own words from: Conversion Rate Uplift (insightful-data-lab.com).

Tags: purpose: reference topic: terminology level: intermediate