TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

A Better Approach to A/B Test Analysis

51 pointsby bvanvugtalmost 11 years ago

7 comments

jessicaraygunalmost 11 years ago
Hey! I&#x27;m the author of Confidence.js. Emily Malcolm and I have been working hard on this new approach for the past few weeks and we&#x27;re super excited to share it!<p>We&#x27;re both here to answer any questions :)
评论 #7813343 未加载
评论 #7812673 未加载
mrmchalmost 11 years ago
Worth pointing out that our (sendwithus) js library for calculating all of this is open source: github.com&#x2F;sendwithus&#x2F;confidence
wtracyalmost 11 years ago
The statistical methods we use now were created in the context of long-running experiments that had to be set up in advance and run in parallel. In that situation, you have to decide up-front how many subjects to test on, and the methods reflect this.<p>I&#x27;d like to see someone takle creating a method aimed at our situations where results steadily trickle in. There ought to be a way to come up with adaptive thresholds such that at any given time we can ask, &quot;Do we have statistically significant results yet, or do we keep the test running?&quot;
评论 #7813402 未加载
评论 #7813371 未加载
评论 #7813356 未加载
评论 #7813189 未加载
评论 #7814204 未加载
_dehalmost 11 years ago
Here&#x27;s another paper that&#x27;s relevant to this topic: <a href="http://www.qubitproducts.com/sites/default/files/pdf/most_winning_ab_test_results_are_illusory.pdf" rel="nofollow">http:&#x2F;&#x2F;www.qubitproducts.com&#x2F;sites&#x2F;default&#x2F;files&#x2F;pdf&#x2F;most_wi...</a>. And discussion here: <a href="https://news.ycombinator.com/item?id=7287665" rel="nofollow">https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=7287665</a>
vincentbarralmost 11 years ago
There are a number of testing tools relying on this methodology. This is useful: Evan&#x27;s Awesome A&#x2F;B Tools (<a href="http://www.evanmiller.org/ab-testing/" rel="nofollow">http:&#x2F;&#x2F;www.evanmiller.org&#x2F;ab-testing&#x2F;</a>). It includes a Chi-Squared test, sample size calculator, two sample T-test, and Poisson Means test.
robdoherty2almost 11 years ago
At my company we&#x27;ve implemented a Bayesian A&#x2F;B test in order to minimize the amount of time a test has to run.<p><a href="http://visualrevenue.com/blog/2013/02/tech-bayesian-instant-headline-testing.html" rel="nofollow">http:&#x2F;&#x2F;visualrevenue.com&#x2F;blog&#x2F;2013&#x2F;02&#x2F;tech-bayesian-instant-...</a>
评论 #7813983 未加载
adamcowleyalmost 11 years ago
Nice to see someone questioning old statistical methods and then bringing new methods to the masses.