Tagged Questions

20
votes
5answers
3k views

Any thoughts on A/B testing in Django based project?

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 ...
9
votes
4answers
4k views

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

Some information on A/B split-testing: http://startuplessonslearned.blogspot.com/2008/09/one-line-split-test-or-how-to-ab-all.html ...
5
votes
2answers
191 views

Rails 3 A/B Split Test System Without Redis?

I'm looking for an easy way to integrate split testing into my Rails 3 application. I've researched and found two alternatives that seem to be up to date for Rails 3... Vanity: ...
3
votes
6answers
875 views

Good Javascript A/B (Split) Testing package/library?

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?
1
vote
1answer
29 views

Significance test for split test with more than 2 splits

What significance test should you use for a percentage metric with more than two experiments? For example, Version | Clicks | Impressions A | 5 | 1,763 B | 4 | 1,672 C | ...
0
votes
1answer
40 views

Suggestions on a simple splittest architecture

I'm pretty new with the Play framework. I wanna make a simple splittest framework for my web solution, but I'm not quite sure how I would go about creating one. I've read pretty much all the ...
0
votes
1answer
58 views

How to calculate statistical significance of conversion rate of several goals?

I am making a python/django split testing or a/b testing library for my own use. However I don't know how to calculate if my test is statisically significant. I have no knowledge of statistics, so I ...
0
votes
2answers
49 views

A/B Test solutions for a locked source code environment - server side decides which user gets which variation

I've been previously using tools such as Google Website Optimizer to run multi-variation or A/B tests. However right now I am looking for a solution that works for a larger site (400-500 000 unique ...
0
votes
0answers
14 views

How can I quantify the conversion improvement of a successful Split Test?

Let's say I've made a split test (A/B Test) on my webshop and I got a result like follows: Group A: Visitors: 10000, Conversions: 900 Group B: Visitors: 10000, Conversions: 1000 (+10%) Common ...
0
votes
1answer
120 views

Split Testing and Optimization Techniques

For example we have 5 landing pages, running under the same URL, being served randomly based on their weightage. What I want is to check which page is converting more and increase it's weightage ...