Is this number real, or is it noise? Peek-safe A/B tests, change detection and honest forecasts. Zero dependencies.
Project description
noisefloor
Is this number real, or is it noise?
Zero dependencies. Standard library only. Works as a Python package or as an MCP server.
The problem
You ship a change and check the A/B test. Then you check again an hour later. Then tomorrow. You stop when it looks like a win.
That procedure lies to you, and not by a little:
| 400 A/A tests, both arms identical, peeked every 20 observations | False winners |
|---|---|
| Two-proportion z-test | 40.2% |
| noisefloor | 0.0% |
Both arms had the same 10% conversion rate, so every "winner" was false. A test tuned to be wrong 5% of the time was wrong 40% of the time, purely because someone looked more than once.
This isn't a discipline problem. Peeking is the rational thing to do when a bad variant is costing money. It's a maths problem, and it has a solution.
Reproduce the table with pytest tests/test_calibration.py.
Install
pip install noisefloor
Use
from noisefloor import experiment
experiment.compare(a_successes=500, a_total=5000,
b_successes=750, b_total=5000)
# {'decided': True, 'winner': 'B',
# 'reading': "B wins: its interval sits entirely above A's",
# 'A': {'rate': 0.1, 'interval': [0.08366, 0.11809]},
# 'B': {'rate': 0.15, 'interval': [0.13049, 0.17101]}, ...}
Run it after every single observation if you like. The guarantee holds at every sample size simultaneously, so stopping early, stopping late, or stopping because your manager walked past all cost you nothing.
The other four checks
from noisefloor import change, coverage, forecast, multiple
# Did this metric actually change? Catches collapses as well as spikes.
change.scan(daily_signups)
# {'state': 'changed', 'direction': 'down',
# 'reading': 'CHANGED (down), 8.5x its usual spread', ...}
# Did the metric move, or did my sample size move?
coverage.check(conversion_rate, sessions_per_day)
# {'verdict': 'SAMPLING_ARTIFACT',
# 'reading': 'your sample size changed by -41% at the same time and it tracks
# this metric historically (correlation 0.70)...'}
# What should the next reading be?
forecast.next_value(latency_p95)
# How good have these forecasts actually been?
forecast.score(latency_p95)
# {'empirical_coverage': 0.803, 'calibrated': True, 'n_misses': 197,
# 'worst_misses': [...]} # misses are always published
# I watch 40 metrics. Which genuinely stand out?
multiple.select({'signups': 3.2, 'latency': 812.0, 'errors': 1.1, ...})
# {'selected': ['latency'],
# 'reading': '1 of 40 metrics worth looking at: latency'}
As an MCP server
Assistants read metrics constantly and assert significance the way people do — by eyeballing a change and calling it. This gives them a way to check.
{
"mcpServers": {
"noisefloor": { "command": "uvx", "args": ["--from", "noisefloor", "noisefloor-mcp"] }
}
}
mcp-name: io.github.beepboop2025/noisefloor
Six tools: ab_test, did_it_change, real_or_sampling, forecast_next, score_forecasts, which_metrics_matter.
Why these methods
Every check is anytime-valid or distribution-free — the two properties that survive contact with how dashboards are really used: looked at whenever someone feels like it, and stopped when they see what they want.
experiment— beta-binomial mixture test martingale. A mixture of likelihood ratios is a non-negative martingale under the null, so Ville's inequality bounds the chance it ever crosses1/alpha. Exact for Bernoulli outcomes rather than a worst-case bound, which is where the power comes from. (theory, safe testing)change— conformal Shiryaev-Roberts detector. Rank-based p-values, no distributional assumption, with a stated average time between false alarms. Two-sided by default, because half of what goes wrong is a number going to zero. (nonexchangeable conformal)coverage— conditions the metric on its own denominator. Almost every metric worth watching is a rate over a sample you don't control.forecast— adaptive conformal intervals, valid under arbitrary distribution shift, graded by the Weighted Interval Score, a proper rule so the scoreboard can't be gamed by hedging. (ACI, decaying steps, WIS)multiple— e-Benjamini-Hochberg. Controls false discoveries across all your metrics at once, under arbitrary dependence — which matters, because real metrics move together. (e-BH, merging)
What it costs
Anytime validity isn't free. At any fixed sample size the interval is wider than a one-look interval, so calling the same effect takes roughly twice the data — 10% vs 13% resolves at a median of about 14,300 observations here, against roughly 7,000 for a correctly run one-look test.
You're buying the right to stop whenever you want. For most teams that's a bargain, because the realistic alternative isn't a clean one-look test. It's a one-look test being peeked at, which is the 40% column above.
Design
Nothing here returns a number it can't stand behind. Not enough history returns NOT_ENOUGH_HISTORY, not a confident zero. A metric that moved with its own sample size returns SAMPLING_ARTIFACT, not a finding. Forecast misses are published in full and there's no flag to hide them.
Every result carries its method and, where one exists, its guarantee. Quote them — the point is that the claim can be backed rather than asserted.
Zero dependencies means it installs in Lambda, edge runtimes and locked-down build images where adding scipy is a procurement conversation. Every result is deterministic: same input, same answer, forever, with no RNG anywhere.
Provenance
These engines were built for Palimpsest, a public-good censorship observatory, where publishing a number you can't defend is the whole failure mode. The sampling-artifact check exists because a censorship index there fell 60.3 → 55.6 while the measurements underneath it fell 353,676 → 208,933. The index hadn't moved. The instrument had.
Licence
MIT.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file noisefloor-0.1.2.tar.gz.
File metadata
- Download URL: noisefloor-0.1.2.tar.gz
- Upload date:
- Size: 29.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
419172d59b12cb5570d8db1dbe08e48b685b95ea3bcde99eb412d040d07d98e8
|
|
| MD5 |
4a44d0573a2270341927cafd6d006560
|
|
| BLAKE2b-256 |
86dad32fe42ab6866cc6c663853261018a5f9a8694566c313be74672e8a48180
|
Provenance
The following attestation bundles were made for noisefloor-0.1.2.tar.gz:
Publisher:
publish.yml on beepboop2025/noisefloor
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
noisefloor-0.1.2.tar.gz -
Subject digest:
419172d59b12cb5570d8db1dbe08e48b685b95ea3bcde99eb412d040d07d98e8 - Sigstore transparency entry: 2272718519
- Sigstore integration time:
-
Permalink:
beepboop2025/noisefloor@0e55f3d42d514d2080eb2e5f7549be0731545c2b -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/beepboop2025
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@0e55f3d42d514d2080eb2e5f7549be0731545c2b -
Trigger Event:
push
-
Statement type:
File details
Details for the file noisefloor-0.1.2-py3-none-any.whl.
File metadata
- Download URL: noisefloor-0.1.2-py3-none-any.whl
- Upload date:
- Size: 26.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ed0c7d860ef68bc99c7a2eef83e8c2cd0c11ca6ca16a5d07eebfd2b58e41eeb2
|
|
| MD5 |
ff1ffbbb96a882d386431165c4c97503
|
|
| BLAKE2b-256 |
89f141204d6ec0445ab252b394c7ca3262eab9abeb13ab0f13998048f988ce0b
|
Provenance
The following attestation bundles were made for noisefloor-0.1.2-py3-none-any.whl:
Publisher:
publish.yml on beepboop2025/noisefloor
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
noisefloor-0.1.2-py3-none-any.whl -
Subject digest:
ed0c7d860ef68bc99c7a2eef83e8c2cd0c11ca6ca16a5d07eebfd2b58e41eeb2 - Sigstore transparency entry: 2272718776
- Sigstore integration time:
-
Permalink:
beepboop2025/noisefloor@0e55f3d42d514d2080eb2e5f7549be0731545c2b -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/beepboop2025
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@0e55f3d42d514d2080eb2e5f7549be0731545c2b -
Trigger Event:
push
-
Statement type: