The core comparison
For each treatment allocation, the engine compares its metric value against control:- Lift — the difference between treatment and control. Reported both in absolute terms and as a relative percentage of control.
- Standard error — how much that lift would wobble from sampling alone, built from each allocation’s variance and sample size.
- Confidence interval — the range of lifts compatible with the data at your confidence level (95% by default). When the interval excludes zero, the result is significant.
- p-value — the probability of seeing a lift this large if the variants were truly identical.
1 − confidence.
The default is a two-sided test at 95% confidence, so the false-positive rate is 5%. You can run at 90% where a faster, more permissive read is acceptable.
Metric types
Every metric reduces to a per-unit value, a lift, and a standard error. What differs is how that value and its variance are built from your events.- Binary / proportion
- Mean
- Count
- Ratio
Conversion rate — did the unit convert or not. The value is the share of exposed units that converted, and the variance is
p(1 − p). Use it for signups, checkouts, click-through, activation.Winsorization
Heavy-tailed metrics — revenue especially — can be dominated by a handful of extreme units. When you set a winsorization percentile on a metric, the engine caps per-unit values at that percentile before aggregating, so a single outlier order can’t swing the result. The lift stays interpretable while the variance comes down.When you don’t have enough data
With few units, intervals are correctly wide and results stay non-significant — the engine reports uncertainty rather than a false read. Near-degenerate cases (zero observed variance, a proportion of exactly 0 or 1, a ratio with a near-zero denominator) are handled gracefully: they widen the interval instead of producing a misleading number.Where to go next
- To watch results as they accrue without inflating false positives, use sequential testing.
- To reach significance sooner, add a pre-experiment covariate with CUPED.