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


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


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

說明

此方法函數提取與 object 關聯的相關矩陣或相關矩陣列表。

用法

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

參數

x

繼承自類 "corStruct" 的對象,表示相關結構。

...

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

如果相關結構包括分組因子,則返回的值將是一個列表,其中包含由每個組的相關矩陣給出的組件。否則,返回的值將是一個表示與 object 關聯的相關結構的矩陣。

例子

cst1 <- corAR1(form = ~1|Subject)
cst1 <- Initialize(cst1, data = Orthodont)
as.matrix(cst1)

作者

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.

也可以看看

corClasses , corMatrix

相關用法


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