I've been asked to research some programming related to the "Taguchi Method", especially as it relates to Multi-variant testing. This is one of the first subjects I've tried to research that I've found zero, nada, zilch, code examples for, especially considering its mathematical basis.

I've found some books describing the math involved but it looks like I'm going to be doing some math brush up unless I can find some code examples I can relate to.

Is this one of those rare things that once you work out the programming, it's so valuable that no one shares? Or do I just fail at Taguchi + google?

link|improve this question
BTW, this question should really be tagged with "Taguchi" but I can't create tags at my current SO level. – brettbaggott Apr 12 '11 at 18:08
feedback

2 Answers

up vote 1 down vote accepted

Taguchi designs are the same thing as covering arrays. The basic idea is that if you have F data "fields" and every one can have N different values, it is possible to construct NF different test cases. A covering array is basically a set of test cases that together cover all possible pairwise combinations of two field values, and the idea is to generate as small one as possible. E.g. if F=3 and N=3, you have 27 possible test cases, but it is enough to have nine test cases if you aim for pairwise coverage:

    Field A | Field B | Field C
    ---------------------------
          1         1         1
          1         2         2
          1         3         3
          2         1         2
          2         2         3
          2         3         1
          3         1         3
          3         2         1
          3         3         2

In this table, you can choose any two fields and any two values and you can always find a row that contains the chosen values for the chosen fields.

Generating Taguchi designs in general is a difficult combinatorial problem.

You can generate Taguchi designs by various methods:

  • Branch and bound
  • Stochastic search (e.g. tabu search or simulated annealing)
  • Greedy search
  • Specific mathematical constructions for some specific structures
link|improve this answer
Wow, amazingly fast answer, especially considering the depth of your answer! Anyway, do you have a suggestion as far as specific research area if I was trying to program testing methods for multi-variant landing page conversions? – brettbaggott Apr 12 '11 at 18:19
Also, though your answer was VERY helpful and led me to many other research paths, there was a big part of the original question that went unanswered. Which was, code examples. I've still yet to find any code examples which is simply amazing to me and suggests that either I'm really bad at searching the web or, code examples for this are too valuable to give away. – brettbaggott Oct 12 '11 at 16:06
There are some commercial companies who build the business around generating Taguchi designs, e.g. www.hexawise.com. – antti.huima Oct 29 '11 at 0:38
feedback

I've recently been tasked with looking into Taguchi methodology for PCR using automated assay optimization. I'm wondering how far you've gotten or if we can learn up together. I'm fairly fluent in Python from a bioinformatics perspective as well as R, VB6, some Perl, PHP, etc. Contact me at ecg8 at yahoo dot com

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.