0% found this document useful (0 votes)
6 views

bbd3factor

Uploaded by

SHYAM SUNDAR
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
6 views

bbd3factor

Uploaded by

SHYAM SUNDAR
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 2

R version 4.3.

2 (2023-10-31 ucrt) -- "Eye Holes"


Copyright (C) 2023 The R Foundation for Statistical Computing
Platform: x86_64-w64-mingw32/x64 (64-bit)

R is free software and comes with ABSOLUTELY NO WARRANTY.


You are welcome to redistribute it under certain conditions.
Type 'license()' or 'licence()' for distribution details.

Natural language support but running in an English locale

R is a collaborative project with many contributors.


Type 'contributors()' for more information and
'citation()' on how to cite R or R packages in publications.

Type 'demo()' for some demos, 'help()' for on-line help, or


'help.start()' for an HTML browser interface to help.
Type 'q()' to quit R.

> 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.
>

You might also like