I've been looking for a good testing framework for months, not finding anything, so I've just been building my own.
This is what I want to do:
- track arbitrary behaviors (e.g. # of photos viewed, # of comments posted)
- track correlation between arbitrary variables and those behaviors
(e.g, how do different versions of this prompt af...
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 lo...
We just now started doing the A/B testing for our Django based project. Can I get some information on best practices or useful insights about this A/B testing.
Ideally each new testing page will be differentiated with a single parameter(just like Gmail). mysite.com/?ui=2 should give a different page. So for every view I need to write a...
My boss for some reason wants to try to implement A/B Testing (or Split Testing) in JavaScript. Anyone know of any good JavaScript packages/libraries/solutions to implement A/B Testing?
...
I want to create a way to test different layouts on a page to see which get more conversions.
For example. If I have 2 versions of a page and I send 50% to page A and 50% to page B and see which one converts more sales.
So I am thinking maybe use .htaccess to rewrite half to page A and the other half to page B.
But how can I do that w...
There are several A/B split testing modules/plugins for Rails.
http://github.com/paulmars/seven_minute_abs
http://www.bingocardcreator.com/abingo
http://vanity.labnotes.org/
etc.
Is there anything similar for Python?
...
Hey all. I'm attempting to run a multi-variant test on a page, and just have a quick question on validation. Due to the size of the site, and the volume of visitors, we are going to segment the test to only a portion of our users (though the test will be run on the same page that ALL visitors go to). Obviously there is no way to set t...