Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What resources are there for A/B split-testing in Rails? [closed]

Tags:

Some information on A/B split-testing:

  • http://startuplessonslearned.blogspot.com/2008/09/one-line-split-test-or-how-to-ab-all.html
  • http://www.37signals.com/svn/posts/1525-writing-decisions-headline-tests-on-the-highrise-signup-page

I could do this in a Rails app with a simple case or if statement in my views, but that gets to be a lot of repetition. Is there a gem to support this? Any design patterns that would help?

like image 251
James A. Rosen Avatar asked Jan 30 '09 14:01

James A. Rosen


1 Answers

I just released A/Bingo, an OSS Rails plugin to do this.

You can see the comparison with Seven Minute Abs for details, but I think it is largely more easy to use.

  • It supports tracking any event as a conversion. Seven Minute Abs only tracks clicks off the page you're currently viewing.
  • It remembers what alternative a user saw, and only shows them that.
  • It has lots of syntax sugar aimed at maximizing programmer productivity.
  • It will do statistical significance tests for you.
like image 115
Patrick McKenzie Avatar answered Sep 19 '22 08:09

Patrick McKenzie