Here's what everyone is missing. Don't use bandits to A/B test UI elements, use them to optimize your content / mobile game levels. My app, 7 Second Meditation, is solid 5 stars, 100+ reviews because I use bandits to optimize my content. By having the system automatically separate the wheat from the chaff, I am free to just spew out content regardless of its quality. This allows me to let go of perfectionism and just…
20 lines of code that beat A/B testing (2012)
101–110 of 164 posts
Re: 20 lines of code that beat A/B testing (2012)
#102I did a lot of A/B testing, but I think the examples that are used in a lot of articles about A/B testing are weird. For small changes like change the color / appearance of a button, the difference in conversion rate is not measurable. Maybe if you can test with traffic in the range of >100K unique visitors (from the same sources), you can say with confidence which button performed better. But how many websites / app…
seasonality doesn't really come into it with A/B split testing - if it changes for one group it changes for both.
Simple example: you're comparing your standard site's theme with a new pumpkin orange theme. In October, the pumpkin orange theme might go great, whereas in December, it might perform worse. There's clearly a seasonality interaction you need to account for.
What you're thinking of is more like testing e-commerce button colors right after Christmas. After Christmas, it's likely that all your groups perform worse, but equally so.
Re: 20 lines of code that beat A/B testing (2012)
#103Earlier quoted context omitted.
> I wanted Optimizely to say it was 100% significant That's not how statistical significance works...
You should contact Optimizely and let them know right now. https://www.optimizely.com/contact/ They'll need to reeducate their statisticians right away!
Years ago my team's statistician did a competitive review of various AB test apps, and reported various ways in which the UIs make statistically invalid statements to the user.
Re: 20 lines of code that beat A/B testing (2012)
#104Earlier quoted context omitted.
> I wanted Optimizely to say it was 100% significant That's not how statistical significance works...
You should contact Optimizely and let them know right now. https://www.optimizely.com/contact/ They'll need to reeducate their statisticians right away!
Re: 20 lines of code that beat A/B testing (2012)
#105If you're constantly changing the button color, size, location, whatever... that is an awful experience in and of itself, is it not? If the Amazon "buy now" button changed size / shape / position / color every time I went to buy something, I would get frustrated with it pretty quickly.
Re: 20 lines of code that beat A/B testing (2012)
#106Earlier quoted context omitted.
> I wanted Optimizely to say it was 100% significant That's not how statistical significance works...
You should contact Optimizely and let them know right now. https://www.optimizely.com/contact/ They'll need to reeducate their statisticians right away!
Optimizely is in a rough spot. People don't like having to think through experimental design, and they are really, really bad at reasoning about p-values. To try to fix the people part, they came out with the sequential stopping rule stuff (their "stats engine), but they never really published much justifying it. The other alternative would be to move the experiments into a Bayesian framework, but that has a lot of it's own problems. When they acquired Synference, that was one of the likely directions to take (along with offering bandits), but that didn't work out and those guys have since left.
Re: 20 lines of code that beat A/B testing (2012)
#107Earlier quoted context omitted.
> I wanted Optimizely to say it was 100% significant That's not how statistical significance works...
You should contact Optimizely and let them know right now. https://www.optimizely.com/contact/ They'll need to reeducate their statisticians right away!
Re: 20 lines of code that beat A/B testing (2012)
#108Here's what everyone is missing. Don't use bandits to A/B test UI elements, use them to optimize your content / mobile game levels. My app, 7 Second Meditation, is solid 5 stars, 100+ reviews because I use bandits to optimize my content. By having the system automatically separate the wheat from the chaff, I am free to just spew out content regardless of its quality. This allows me to let go of perfectionism and just…
Re: 20 lines of code that beat A/B testing (2012)
#109There is no silver bullet, no free lunch. There is no algorithm that will beat understanding your domain and carefully analyzing your data.
Re: 20 lines of code that beat A/B testing (2012)
#110I like the premise of this a lot, but it seems to me that the setting that the author chose (some UI element of a website) is one of the worst possible settings for this: what matters a whole lot more than if your button is red or green or blue is some modicum of consistency . If you're constantly changing the button color, size, location, whatever... that is an awful experience in and of itself, is it not? If the Am…