You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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 in the code uses 'correlation', but later the if that actually selects the used function uses 'correlate'.
36: "centermaximin" or "cm", and "correlation" or "corr". If no value
88: >>> lhs(4, samples=5, criterion='correlate', iterations=10)
98: 'centermaximin', 'cm', 'correlation',
116: elif criterion.lower() in ('correlate', 'corr'):
Thanks!
The text was updated successfully, but these errors were encountered:
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 in the code uses'correlation'
, but later the if that actually selects the used function uses'correlate'
.Thanks!
The text was updated successfully, but these errors were encountered: