https://github.com/relf/pydoe3
Design of experiments for Python
https://github.com/relf/pydoe3
design-of-experiments sampling-methods
Last synced: 11 months ago
JSON representation
Design of experiments for Python
- Host: GitHub
- URL: https://github.com/relf/pydoe3
- Owner: relf
- License: bsd-3-clause
- Created: 2023-10-24T14:33:28.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-04-15T10:10:38.000Z (almost 2 years ago)
- Last Synced: 2024-04-21T08:06:42.218Z (almost 2 years ago)
- Topics: design-of-experiments, sampling-methods
- Language: Python
- Homepage: https://pydoe3.readthedocs.io/en/stable
- Size: 734 KB
- Stars: 9
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
pyDOE3: An experimental design package for python
=================================================
[](https://github.com/relf/pyDOE3/actions/workflows/tests.yml)
[](https://pydoe3.readthedocs.io/en/latest/?badge=latest)
[](https://zenodo.org/doi/10.5281/zenodo.10958492)
[](https://github.com/astral-sh/ruff)
`pyDOE3` is a fork of the [`pyDOE2`](https://github.com/clicumu/pyDOE2) package
that is designed to help the scientist, engineer, statistician, etc., to
construct appropriate experimental designs.
This fork came to life to solve bugs and issues that remained unsolved in the
original package.
Capabilities
------------
The package currently includes functions for creating designs for any
number of factors:
- Factorial Designs
- General Full-Factorial (``fullfact``)
- 2-level Full-Factorial (``ff2n``)
- 2-level Fractional Factorial (``fracfact``)
- Plackett-Burman (``pbdesign``)
- Generalized Subset Designs (``gsd``)
- Response-Surface Designs
- Box-Behnken (``bbdesign``)
- Central-Composite (``ccdesign``)
- Randomized Designs
- Latin-Hypercube (``lhs``)
See [Documentation](https://pydoe3.readthedocs.io).
Installation
------------
```bash
pip install pyDOE3
```
Credits
-------
`pyDOE` original code was originally converted from code by the following
individuals for use with Scilab:
- Copyright (C) 2012-2013, Michael Baudin
- Copyright (C) 2012, Maria Christopoulou
- Copyright (C) 2010-2011, INRIA, Michael Baudin
- Copyright (C) 2009, Yann Collette
- Copyright (C) 2009, CEA, Jean-Marc Martinez
`pyDOE` was converted to Python by the following individual:
- Copyright (c) 2014, Abraham D. Lee
The following individuals forked `pyDOE` and worked on `pyDOE2`:
- Copyright (C) 2018, Rickard Sjögren and Daniel Svensson
License
-------
This package is provided under the *BSD License* (3-clause)
References
----------
- [Factorial designs](http://en.wikipedia.org/wiki/Factorial_experiment)
- [Plackett-Burman designs](http://en.wikipedia.org/wiki/Plackett-Burman_design)
- [Box-Behnken designs](http://en.wikipedia.org/wiki/Box-Behnken_design)
- [Central composite designs](http://en.wikipedia.org/wiki/Central_composite_design)
- [Latin-Hypercube designs](http://en.wikipedia.org/wiki/Latin_hypercube_sampling)
- Surowiec, Izabella, Ludvig Vikström, Gustaf Hector, Erik Johansson,
Conny Vikström, and Johan Trygg. “Generalized Subset Designs in Analytical
Chemistry.” Analytical Chemistry 89, no. 12 (June 20, 2017): 6491–97.
.