Could somebody share with me a source code in Python for the Taguchi design of experiments?
import pandas as pd
from doepy import build
factors = {
'A': [1, 2],
'B': [1, 2],
'C': [1, 2]
}
design = build.taguchi(factors)
print(design)`
Could somebody share with me a source code in Python for the Taguchi design of experiments?
import pandas as pd
from doepy import build
factors = {
'A': [1, 2],
'B': [1, 2],
'C': [1, 2]
}
design = build.taguchi(factors)
print(design)`