bbd(rsm)
bbd()所属R语言包:rsm
Generate a Box-Behnken design
生成Box-Behnken设计
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This function can generate a Box-Behnken design in 3 to 7 factors, and optionally will block it orthogonally if there are 4 or 5 factors. It can also randomize the design and create a coded.data object.
此功能可以生成一个在3至7个因素的Box-Behnken设计,并选择性地阻止它正交的,如果有4个或5个因素。它也可以随机化的设计和建立一个coded.data对象。
用法----------Usage----------
bbd(k, n0 = 4, block = (k == 4 | k == 5), randomize = TRUE, coding)
参数----------Arguments----------
参数:k
A formula, or an integer giving the number of variables. If the formula has a left-hand side, the variables named there are appended to the design and initialized to NA.
一个公式或一个整数,变量的数目。如果该公式的左手侧,命名的变量有附加的设计和初始化NA。
参数:n0
Number of center points in each block.
在每个块中的中心点数目。
参数:block
Boolean specifying whether or not to block the design; or a character string (taken as TRUE) giving the desired name for the blocking factor. Only BBDs with 4 or 5 factors can be blocked. A 4-factor BBD has three orthogonal blocks, and a 5-factor BBD has two.
布尔指定是否要阻止的设计,或者是一个字符串(作为TRUE)提供合适的名称块因子。只有4或5个因素的BBDs可以被阻止。 A 4-因子BBD有三个正交的块,和具有两个5-因子BBD。
参数:randomize
Boolean determining whether or not to randomize the design. If block is TRUE, each block is randomized separately.
布尔值确定是否随机化设计。如果block是TRUE,每块是随机的分别。
参数:coding
Optional list of formulas. If this is provided, a coded.data object is returned with the specified coding.
可选的公式列表。如果这是一个coded.data对象,则返回与指定的编码。
Details
详细信息----------Details----------
Box-Behnken designs (BBDs) are useful designs for fitting second-order response-surface models. They use only three levels of each factor (compared with 5 for central-composite designs) and sometimes fewer runs are required than a CCD. This function uses an internal table of BBDs; it only works for 3 to 7 factors.
Box-Behnken设计的设计(BBDs)拟合二阶响应曲面模型是有用的设计。他们使用三个层次的各因素(去年同期为中心复合设计),有时更少的运行需要比CCD。此函数使用内部的BBDs表,它仅适用于3~7个因素。
If k is specified as a formula, the names in the formula determine the names of the factors in the generated design. Otherwise, the names will be x1, x2, ....
如果k被指定为一个公式,在公式中的名称确定在生成的设计因素的名称。否则,名称是x1, x2, ...。
值----------Value----------
A data.frame with the generated design; or if coding is specified, a coded.data object. The blocking variable, if present, will be a factor; all other variables will be numeric.
Adata.frame的产生的设计;或coding如果,coded.data对象。阻塞的变量,如果存在的话,将是一个factor所有其他变量将是数字。
注意----------Note----------
To avoid aliasing the pure-quadratic terms, you must use a positive value n0.
为了避免混叠的纯二次项,则必须使用正值n0。
(作者)----------Author(s)----------
Russell V. Lenth
参考文献----------References----------
Journal of Statistical Software, 32(7), 1–17. http://www.jstatsoft.org/v32/i07/.
Response Surface Methodology (3rd ed.), Wiley.
参见----------See Also----------
ccd, coded.data
ccd,coded.data
实例----------Examples----------
library(rsm)
### Simple 3-factor case, not randomized so structure is evident[##简单的三因素的情况下,不是随机的,这样的结构是显而易见的]
bbd(3, randomize=FALSE)
### 5-factor BBD, divided between two plants[##5 - BBD因素,分为两个工厂]
bbd(y1 + y2 ~ A + B + C + D + E, n0 = 5, block = "Plant")
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|