pyDOE icon indicating copy to clipboard operation
pyDOE copied to clipboard

Design of experiments for Python

Results 27 pyDOE issues
Sort by recently updated
recently updated
newest added

Just a heads-up: There's a mixup with the name for the correlation criterion for the Latin Hypercube. In `doe_lhs.py`, the documentation says `"correlation"` but the example says `'correlate'`. The check...

The old regex string would consider the whitespace as an optional split point and would even split character like 'ab' in two separate letters. By changing it from \s? to...

Hello, i use pyDOE lhs for generate a milions of samples in high-dimensional space. Function _lhsclassic was writed quite RAM expensive. I send you improved version of mentioned function. Can...

In Python 3.6.0, numpy 1.11.3, the following warnings appear: ``` C:\Users\######\AppData\Local\Continuum\Anaconda3\lib\site-packages\pydoe-0.3.8-py3.6.egg\pyDOE\doe_repeat_center.py:43: VisibleDep recationWarning: using a non-integer number instead of an integer will result in an error in the future .C:\Users\######\AppData\Local\Continuum\Anaconda3\lib\site-packages\pydoe-0.3.8-py3.6.egg\pyDOE\doe_factorial.py:78:...

Hi I am new to Python. I am using miniconda. I installed pyDOE using `conda install -c conda-forge pydoe ` When I run the ccdesign command, `ccdesign(2)` I get the...

Hi, The package on pip doesn't have the fix for the bug outlined in issue #8. Would it be possible to release a new version? cheers

The code would be much more flexible if you passed a numpy random state in and used that for the random draws. Object oriented random number generator would allow the...

Added a function to create fractional factorial designs specified by desired resolution. I am mostly interested in designs at a certain resolution, and the previous approach to manually specify the...

Hi, I am using pyDOE for generating box Behnken and I got an error: File "/root/anaconda3/lib/python3.6/site-packages/pyDOE/doe_repeat_center.py", line 43, in repeat_center return np.zeros((repeat, n)) TypeError: 'float' object cannot be interpreted as...