Central Composite Design
A central composite design represent a two-level factorial design that has been augmented with a center point and axial point to enable the modeling of quadratic response surface models.
This base class specifies a circumscribed central composite design. Thus, the extreme values for the high and low settings for the factors will be exceeded. Care must be taken to ensure that the values for the axial points are valid values for the design factors in the original parameter space.
Parameters
an iterator to the points in the factorial or fractional factorial design
the number of replications at each point in the factorial design. The default is 1.
the number of replications for the center point in the factorial design. The default is 1.
the number of replications for the axial points in the factorial design. The default is 1.
the axial spacing in coded units for the design. The axial spacing must be greater than 0.0. The user is responsible for selecting an appropriate axial spacing value that determines the quality of the design.
Constructors
A central composite design represent a two-level factorial design that has been augmented with a center point and axial point to enable the modeling of quadratic response surface models.
A central composite design represent a two-level factorial design that has been augmented with a center point and axial point to enable the modeling of quadratic response surface models.
Properties
Functions
Makes a center point for the factors of the design in the original measurement units
Returns an iterator that produces the design points in order from 1 to the number of design points.
Returns all the design points in the experiment
Returns the design points as a data frame. The columns of the data frame are the factor names and the rows are the design points.
Returns all the design points based on the cartesian product of the factors and their levels as a 2D array. The rows of the array are the design points. The row array's 0th element represents the first factor in the list of factor names.
Returns all the design points based on the cartesian product of the factors and their levels. The element arrays of the returned list are the design points. The element array's 0th element represents the first factor in the list of factor names.
Returns the name of the factor. The first factor is at k = 1
To facilitate the specification of a linear model for the design
Converts the original values to code values
Converts the coded values to values on the original measurement scale.