An R6 class representing a Plackett-Burman design.
name
A character string specifying the name of the design. Default is NULL
.
factors
A list of factors included in the Taguchi design. Each factor is typically an instance of the pbFactor
class.
design
A data.frame
representing the design matrix of the experiment. This includes the levels of each factor for every run of the experiment. Default is an empty data.frame
.
designType
A character string specifying the type of Taguchi design used. Default is NULL
.
replic
A data.frame
containing the replication information for the design. Default is an empty data.frame
.
response
A data.frame
storing the response values collected from the experiment. Default is an empty data.frame
.
Type
A data.frame
specifying the type of responses or factors involved in the design. Default is an empty data.frame
.
block
A data.frame
indicating any blocking factors used in the design. Default is an empty data.frame
.
runOrder
A data.frame
detailing the order in which the experimental runs were conducted. Default is an empty data.frame
.
standardOrder
A data.frame
detailing the standard order of the experimental runs. Default is an empty data.frame
.
desireVal
A list storing desired values for responses in the experiment. Default is an empty list.
desirability
A list storing desirability functions used to evaluate the outcomes of the experiment. Default is an empty list.
fits
A data.frame
containing model fits or other statistical summaries from the analysis of the experimental data. Default is an empty data.frame
.
values()
Get and set the values
for an object of class pbDesign
.
pbDesign.c$values(value)
value
New value, If missing value get the values
.
value
New units, If missing value get the units
.
.factors()
Get and set the factors
in an object of class pbDesign
.
pbDesign.c$.factors(value)
value
New factors, If missing value get the factors
.
value
New names, If missing value get the names
.
as.data.frame()
Return a data frame with the information of the object pbDesign
.
pbDesign.c$as.data.frame()
.response()
Get and set the the response
in an object of class pbDesign
.
pbDesign.c$.response(value)
value
New response, If missing value get the response
.
.nfp()
Prints a summary of the factors attributes including their low, high, name, unit, and type.
pbDesign.c$.nfp()
clone()
The objects of this class are cloneable with this method.
pbDesign.c$clone(deep = FALSE)
deep
Whether to make a deep clone.