print.OMD | R Documentation |
Printing method for lists of class OMD
. It displays the
best extra-runs according to the OMD criterion together with the correspondent OMD values.
## S3 method for class 'OMD'
print(x, X = FALSE, resp = FALSE, Xcand = TRUE, models = TRUE, nMod = x$nMod,
digits = 3, verbose=FALSE, ...)
x |
list of class |
X |
logical. If |
resp |
logical If |
Xcand |
logical. If |
models |
logical. Competing models are printed if |
nMod |
integer. Top models to print. |
digits |
integer. Significant digits to use in the print out. |
verbose |
logical. If |
... |
additional arguments passed to |
The function is mainly called for its side effects. Prints out the selected
components of the class OMD
objects, output of the OMD
function.
For example the marginal factors and models posterior probabilities and
the top OMD follow-up experiments with their corresponding OMD statistic.
It returns invisible list with the components:
calc |
Numeric vector with basic calculation information. |
models |
Data frame with the competing models posterior probabilities. |
follow-up |
Data frame with the runs for follow-up experiments and their corresponding OMD statistic. |
Marta Nai Ruscone.
Box, G. E. P. and Meyer, R. D. (1993) Finding the Active Factors in Fractionated Screening Experiments., Journal of Quality Technology 25(2), 94–105. \Sexpr[results=rd]{tools:::Rd_expr_doi("10.1080/00224065.1993.11979432")}.
Meyer, R. D., Steinberg, D. M. and Box, G. E. P. (1996) Follow-Up Designs to Resolve Confounding in Multifactor Experiments (with discussion)., Technometrics 38(4), 303–332. \Sexpr[results=rd]{tools:::Rd_expr_doi("10.2307/1271297")}.
OMD
, OBsProb
library(OBsMD)
data(OBsMD.es5, package="OBsMD")
X <- as.matrix(OBsMD.es5[,1:5])
y <- OBsMD.es5[,6]
es5.OBsProb <- OBsProb(X=X,y=y,blk=0,mFac=5,mInt=2,nTop=32)
nMod <- 26
Xcand <- matrix(c(-1, -1, -1, -1, -1,
1, -1, -1, -1, -1,
-1, 1, -1, -1, -1,
1, 1, -1, -1, -1,
-1, -1, 1, -1, -1,
1, -1, 1, -1, -1,
-1, 1, 1, -1, -1,
1, 1, 1, -1, -1,
-1, -1, -1, 1, -1,
1, -1, -1, 1, -1,
-1, 1, -1, 1, -1,
1, 1, -1, 1, -1,
-1, -1, 1, 1, -1,
1, -1, 1, 1, -1,
-1, 1, 1, 1, -1,
1, 1, 1, 1, -1,
-1, -1, -1, -1, 1,
1, -1, -1, -1, 1,
-1, 1, -1, -1, 1,
1, 1, -1, -1, 1,
-1, -1, 1, -1, 1,
1, -1, 1, -1, 1,
-1, 1, 1, -1, 1,
1, 1, 1, -1, 1,
-1, -1, -1, 1, 1,
1, -1, -1, 1, 1,
-1, 1, -1, 1, 1,
1, 1, -1, 1, 1,
-1, -1, 1, 1, 1,
1, -1, 1, 1, 1,
-1, 1, 1, 1, 1,
1, 1, 1, 1, 1
),nrow=32,ncol=5,dimnames=list(1:32,c("A","B","C","D","E")),byrow=TRUE)
p_omd <- OMD(OBsProb=es5.OBsProb,nFac=5,nBlk=0,nMod=26,
nFoll=4,Xcand=Xcand,mIter=20,nStart=25,startDes=NULL,
top=30)
print(p_omd)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.