Matrix.reStruct(nlme)
Matrix.reStruct()所属R语言包:nlme
Assign reStruct Matrices
分配reStruct矩阵
译者:生物统计家园网 机器人LoveR
描述----------Description----------
The individual matrices in value are assigned to each pdMat component of object, in the order they are listed. The new matrices must have the same dimensions as the matrices they are meant to replace.
个别在value的矩阵分配到每个pdMatobject组件,它们列出的顺序。新的矩阵必须具有相同的尺寸作为他们用来取代矩阵。
用法----------Usage----------
## S3 replacement method for class 'reStruct'
matrix(object) <- value
参数----------Arguments----------
参数:object
an object inheriting from class reStruct, representing a random effects structure and consisting of a list of pdMat objects.
从类继承的对象reStruct,代表随机效应的结构和组成的一个pdMat对象列表。
参数:value
a matrix, or list of matrices, with the new values to be assigned to the matrices associated with the pdMat components of object.
一个矩阵,矩阵的名单,被分配到pdMatobject组件相关的矩阵的新的价值观。
值----------Value----------
an reStruct object similar to object, but with the coefficients of the individual pdMat components modified to produce the matrices listed in value.
reStruct对象object类似,但个人pdMat生产value所列的矩阵修改组件的系数。
作者(S)----------Author(s)----------
Jose Pinheiro and Douglas Bates <a href="mailto:bates@stat.wisc.edu">bates@stat.wisc.edu</a>
参见----------See Also----------
reStruct, pdMat, "matrix<-"
reStruct,pdMat,"matrix<-"
举例----------Examples----------
rs1 <- reStruct(list(Dog = ~day, Side = ~1), data = Pixel)
matrix(rs1) <- list(diag(2), 3)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|