Vdgraph(Vdgraph)
Vdgraph()所属R语言包:Vdgraph
this function makes a Variance Dispersion Graph of a response surface design
此功能的响应面设计的方差分散走势图
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This function calls the function Vardsgr which uses Vining's (1993) fortran code to get the coordinates of a variance dispersion graph, and then makes the plot.
该函数调用函数Vardsgr使用蔓生(1993)的Fortran代码得到的方差分散图的坐标,然后使图。
用法----------Usage----------
Vdgraph(des)
参数----------Arguments----------
参数:des
des is a matrix or a data frame containing a response surface design in coded or uncoded units. There should be one column for each factor in the design, and one row for each run in the design. The maximum number of rows allowed is 99, and the maximum number of columns is 7.
德是一个矩阵或一个数据框在编码或未编码单位中包含的响应表面设计。应该是每个因素在设计中,每次运行的设计和一行一列。的最大允许的行数是99,和最大列数为7。
值----------Value----------
vdgpl
vdgpl
参数:vdgpl
This is a graph containing the Variance Dispersion Graph
这是一个图,方差分散走势图
注意----------Note----------
This function calls the function Vardsgr to get the coordinates for the plot.
此功能调用的函数Vardsgr,得到的坐标图。
(作者)----------Author(s)----------
John S. Lawson <a href="mailto:lawson@byu.edu">lawson@byu.edu</a>
参考文献----------References----------
Journal of Quality Technology, Vol 25, No. 1, pp. 45-58, 1993. 2. Vining, G. "Corrigenda" Journal of Quality Technology, Vol 25, No. 4, pp 333-335. 1993.
实例----------Examples----------
data(D310)
Vdgraph(D310)
library(rsm)
bbhrsm<-bbd(4,n0=3)
des<-bbhrsm[,2:5]
des<-as.matrix(des)
Vdgraph(des)
dat<-ccd(~A+B,generators=B~A,n0=c(1,1),alpha=1.212,wbreps=1)
des2<-dat[,2:3]
Vdgraph(des2)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|