Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Design of Experiments (DoE) in Python?

Is there any module or package available in Python for using Design of Experiments (DoE) methods?

like image 976
Deepak Gupta Avatar asked Feb 06 '13 22:02

Deepak Gupta


2 Answers

Have you tried pyDOE? It is great for constructing factorial designs, response surface designs, and more. You can find it on PyPi.

like image 58
tisimst Avatar answered Oct 03 '22 22:10

tisimst


Try this new code base which takes a simple CSV file as input variable's range and generates the desired DOE in another CSV file. It is not a full package but collection of functions to use.

Design-of-Experiment-Python

like image 27
Tirtha Avatar answered Oct 03 '22 23:10

Tirtha