Skip to main content

Heterogeneous Treatment Effect Detection

What are Heterogeneous Treatment Effects

Experiments can have interesting effects on sub-populations that are easily missed. They might have a bug that impacts only a certain browser, OS, or country. If the topline impact isn't significant or is canceled out by other changes - these are missed.

What will Statsig do

Statsig will automatically flag experiments when extreme heterogeneous effects are noticed for any sub-population your company has configured. Experiments are analyzed by default when Pulse is loaded after Day 1, Day 3 and when the Target Duration is met.

Enabling this

On Statsig Warehouse Native, configure the "Segments of Interest" you want automatically evaluated. These will either have to be configured as Entity Properties or passed in by a Statsig SDK as user properties in the User Object.

image image

Methodology

We use a Welch’s t-test to compare the treatment effect for a particular segment of users to the treatment effect for all other users since we expect to potentially see unequal population variances when comparing user segments.

The average treatment effect is calculated as follows:

TE=XtXc\overline{TE} = \overline{X_t} - \overline{X_c}

The variance in treatment effect is calculated as follows:

var(TE)=var(Xt)+var(Xc)var(TE) = var(X_t) + var(X_c)

The n of the treatment effect is calculated as follows:

nTE=min(nt,nc)n_{TE} = min(n_t, n_c)

With these calculations, we can determine the t-statistic and degrees of freedom as we would for any experiment using Welch's t-test. We then use a Bonferroni Correction to adjust our alpha to avoid false positives, setting a threshold where we consider there to be a high likelihood of heterogeneous treatment effect or some likelihood of heterogeneous treatment effect. We consider a specific dimension vs the rest calculation for one metric of one test variant vs the control to be one "comparison" for the sake of the Bonferroni Correction.

high chance of HTE, α=0.01number of comparisons\text{high chance of HTE, } \alpha = \frac{0.01}{\text{number of comparisons}}

some chance of HTE, α=0.05number of comparisons\text{some chance of HTE, } \alpha = \frac{0.05}{\text{number of comparisons}}