
Last chance! 50% off unlimited learning
Sale ends in
iscube(design, ...)
isstar(design, ...)
pickcube(design, ...)
iscube
and isstar
each return a logical vector (cf. Details section).
pickcube
returns a data frame of class design with
type
FrF2.center
or FrF2
.iscube
returned a wrong result
without warning, when applied to an old version CCD design
(before DoE.wrapper, version 0.8-6 of Nov 15 2011).
Since version 0.23 of package iscube
provides a logical vector that is TRUE for cube points
and FALSE for center points and star points. Its purpose is to enable use of simple functions
for MEPlot
or DanielPlot
.
Function isstar
provides a logical vector that is TRUE for the star block
(including center points) of a central composite design.
Function pickcube
reduces a central composite design (type ccd
)
to its cube block, including center points. This function is needed, if a CCD
has been created in one go, but analyses are already required after conducting
the cube portion of the design (and these perhaps even prevent the star portion
from being run at all).pb
, FrF2
, ccd.design
## purely technical example, not run because FrF2 not loaded
plan <- FrF2(16,5, factor.names=c("one","two","three","four","five"), ncenter=4)
iscube(plan)
plan2 <- ccd.augment(plan)
iscube(plan2)
isstar(plan2)
pickcube(plan2)
Run the code above in your browser using DataLab