bbd3factor
bbd3factor
> library(rsm)
> ### Simple 3-factor case, not randomized so structure is evident
> bbd(3, randomize=FALSE)
run.order std.order x1.as.is x2.as.is x3.as.is
1 1 1 -1 -1 0
2 2 2 1 -1 0
3 3 3 -1 1 0
4 4 4 1 1 0
5 5 5 -1 0 -1
6 6 6 1 0 -1
7 7 7 -1 0 1
8 8 8 1 0 1
9 9 9 0 -1 -1
10 10 10 0 1 -1
11 11 11 0 -1 1
12 12 12 0 1 1
13 13 13 0 0 0
14 14 14 0 0 0
15 15 15 0 0 0
16 16 16 0 0 0
Data are stored in coded form using these coding formulas ...
x1 ~ x1.as.is
x2 ~ x2.as.is
x3 ~ x3.as.is
> local({fn<-choose.files(filters=Filters[c('R','txt','All'),],index=4)
+ file.show(fn,header=fn,title='')})
> ### Box-Behnken Design (BBD): The bbd() function is used to create a Box-Behnken
design. BBDs are fractional factorial designs that efficiently explore the response
surface in three or more dimensions without running a full factorial experiment,
which could be resource-intensive. This design is widely used in response surface
methodology (RSM).
> ### hree-Factor Case: The design generated by bbd(3, randomize=FALSE)
specifically addresses a scenario involving three factors. In experimental design,
factors represent variables that are manipulated or controlled by the experimenter.
For example, if you're testing a new drug formulation, the factors might include
dosage, administration method, and time of administration.
> ### Non-Randomized Design: The parameter randomize=FALSE indicates that the
design is not randomized. In experimental design, randomization is often used to
mitigate the effects of potential confounding variables and to ensure that the
results are not biased by the order in which treatments are applied or observations
are made. However, in this case, the design is intentionally not randomized, which
means the structure of the experimental runs follows a predetermined pattern.
>