Factorial Design
open class FactorialDesign @JvmOverloads constructor(factors: Set<Factor>, name: String? = null) : Identity, ExperimentalDesignIfc(source)
A factorial design represents a list of design points where every design point represents a possible row in the cartesian product of the levels for the factors. That is, all possible combinations of the levels for the factors are possible design points. A design point is individually generated when needed via the associated iterator for the design.
Parameters
factors
a set representing the factors used in the design. There must be 2 factors in the supplied set.
name
an optional name for the design
Inheritors
Types
Link copied to clipboard
open inner class FactorialDesignIterator @JvmOverloads constructor(val numReps: Int? = null) : DesignPointIteratorIfc
This iterator should present each design point until all points in the design have been presented.