當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


R as.matrix.reStruct reStruct 對象的矩陣


R語言 as.matrix.reStruct 位於 nlme 包(package)。

說明

此方法函數提取與 objectpdMat 元素對應的正定矩陣。

用法

## S3 method for class 'reStruct'
as.matrix(x, ...)

參數

x

繼承自類 "reStruct" 的對象,表示隨機效果結構並由 pdMat 對象列表組成。

...

從其他方法傳遞的進一步參數。

一個列表,其組件由與 object 的元素相對應的正定矩陣給出。

例子

rs1 <- reStruct(pdSymm(diag(3), ~age+Sex, data = Orthodont))
as.matrix(rs1)

作者

José Pinheiro and Douglas Bates bates@stat.wisc.edu

參考

Pinheiro, J. C. and Bates, D. M. (2000), Mixed-Effects Models in S and S-PLUS, Springer, New York.

也可以看看

as.matrix.pdMat , reStruct , pdMat

相關用法


注:本文由純淨天空篩選整理自R-devel大神的英文原創作品 Matrices of an reStruct Object。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。