SSD(stats)
SSD()所属R语言包:stats
SSD Matrix and Estimated Variance Matrix in Multivariate Models
SSD矩阵和多变量模型估计方差矩阵
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Functions to compute matrix of residual sums of squares and products, or the estimated variance matrix for multivariate linear models.
函数来计算平方和产品的剩余款项,或多元线性模型的估计方差矩阵的矩阵。
用法----------Usage----------
# S3 method for class 'mlm'
SSD(object, ...)
# S3 methods for class 'SSD' and 'mlm'
estVar(object, ...)
参数----------Arguments----------
参数:object
object of class "mlm", or "SSD" in the case of estVar.
object类"mlm"或"SSD"在estVar。
参数:...
Unused
未使用
值----------Value----------
SSD() returns a list of class "SSD" containing the following components
SSD()类"SSD"包含以下组件返回列表
参数:SSD
The residual sums of squares and products matrix
矩阵平方和产品的剩余款项
参数:df
Degrees of freedom
自由度
参数:call
Copied from object
复制从object
estVar returns a matrix with the estimated variances and covariances.
estVar返回的估计方差和协方差矩阵。
参见----------See Also----------
mauchly.test, anova.mlm
mauchly.test,anova.mlm
举例----------Examples----------
# Lifted from Baron+Li:[从男爵+锂解除:]
# "Notes on the use of R for psychology experiments and questionnaires"[“心理实验和问卷调查的R使用的注意事项”]
# Maxwell and Delaney, p. 497[麦克斯韦和德莱尼。 497]
reacttime <- matrix(c(
420, 420, 480, 480, 600, 780,
420, 480, 480, 360, 480, 600,
480, 480, 540, 660, 780, 780,
420, 540, 540, 480, 780, 900,
540, 660, 540, 480, 660, 720,
360, 420, 360, 360, 480, 540,
480, 480, 600, 540, 720, 840,
480, 600, 660, 540, 720, 900,
540, 600, 540, 480, 720, 780,
480, 420, 540, 540, 660, 780),
ncol = 6, byrow = TRUE,
dimnames=list(subj=1:10,
cond=c("deg0NA", "deg4NA", "deg8NA",
"deg0NP", "deg4NP", "deg8NP")))
mlmfit <- lm(reacttime~1)
SSD(mlmfit)
estVar(mlmfit)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|