
TL’DR: Bayesian A/B testing falls short
Learn why Bayesian A/B testing can lead to misunderstandings, inflated false positive rates, introduce bias and complicate results rather than clarify them.

A credible interval is a range that contains the true effect with a stated probability, given the model and the data. It says the thing most people wrongly believe a confidence interval says, and it says it only as well as the prior behind it.
A 95% credible interval is a range with a 95% probability of containing the true effect, given the prior and the data. That is a direct statement about the quantity you care about, and it is what almost everybody believes they are asserting when they report a confidence interval. The frequentist version cannot make that claim: it says the procedure captures the truth 95% of the time across hypothetical repeats, which is a property of the method rather than of the interval in front of you.
The distinction is real and its practical importance is easy to overstate in both directions. With a flat prior and a reasonable sample, the two intervals are frequently numerically identical to the decimal places anyone reports, so a team switching frameworks to fix their interpretation often changes nothing but the wording. Where they diverge is where the prior carries weight — small samples, rare events, or a genuinely informative prior — and there the credible interval is shifted towards the prior by an amount that depends entirely on a modelling choice.
There are two ways to construct one and they differ for skewed posteriors. An equal-tailed interval cuts 2.5% off each end, which is simple and can exclude the most probable value when the posterior is asymmetric. A highest density interval takes the shortest range containing 95% of the mass, so every point inside is more probable than every point outside — which is usually the more meaningful choice and is what most software means by HDI.
The property that makes it genuinely useful in practice is that it composes with decisions. Because the posterior is a probability distribution, you can integrate it against a threshold and ask what the chance is of clearing the effect the business case needs. A confidence interval does not support that operation without additional assumptions, and the awkward workarounds people use to approximate it are usually the credible interval's answer arrived at less directly.
The caution is that its honesty depends on the prior being stated. An interval reported without saying what prior produced it is not more transparent than a confidence interval — it is less, because the reader cannot tell how much of the range came from the data. Report the prior alongside, and where it is doing real work, report a sensitivity check across alternatives.
Two constructions, and the comparison that shows when the choice of framework changes the number.
[ q₀.₀₂₅ , q₀.₉₇₅ ] of the posteriorSimple, and for a skewed posterior it can exclude the mode — the single most probable value.
shortest [a, b] with ∫ₐᵇ p(θ|data) dθ = 0.95Every point inside is more probable than every point outside. Usually the better choice for asymmetric posteriors.
P( a ≤ θ ≤ b | data, prior ) = 0.95A probability about the effect. The frequentist version makes a claim about the procedure instead.
flat prior + large sample → numerically near-identicalThe divergence appears with informative priors or small samples — see the proportion calculator.
The same conversion experiment is analysed three ways: a frequentist confidence interval, a credible interval under a flat prior, and a credible interval under an empirical prior built from 200 past experiments. Control converts 240 of 5,000; the variant 288 of 5,000.
The flat-prior credible interval essentially reproduces the confidence interval. The empirical prior halves the upper end and pulls the lower end below zero.
The first comparison is the reassuring one: with a flat prior the two frameworks agree to within a few tenths of a point, which is the usual situation and means the choice of framework rarely changes a conclusion by itself. The third row is where the substance is. An observed 20% relative lift from 5,000 users per arm is a thin result, and a prior built from 200 experiments in which effects were centred at zero with a 4% spread correctly regards 20% as extraordinary — so it pulls the estimate hard towards the mass of past experience. Which interval to believe depends on whether you accept that the past 200 experiments are informative about this one, which is a substantive question rather than a statistical one. What the table makes clear is that the empirical prior is doing most of the work here, and reporting only that interval without saying so would hide the most important input to the answer.

Learn why Bayesian A/B testing can lead to misunderstandings, inflated false positive rates, introduce bias and complicate results rather than clarify them.


Many analysts make fundamental mistakes that can misrepresent or undermine the test's findings. This blog highlights common reporting errors and offers practical guidance for presenting tests results effectively.

Applying it to a live measurement problem is the part that goes wrong. If you are designing an experiment, reading a result you do not trust, or trying to work out what your marketing actually caused, that is the work we do.