bread(sandwich)
bread()所属R语言包:sandwich
Bread for Sandwiches
面包三明治
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Generic function for extracting an estimator for the bread of sandwiches.
通用功能的三明治面包中提取的一种估计。
用法----------Usage----------
bread(x, ...)
参数----------Arguments----------
参数:x
a fitted model object.
拟合模型对象。
参数:...
arguments passed to methods.
参数传递给方法。
值----------Value----------
A matrix containing an estimator for the expectation of the negative derivative of the estimating functions, usually the Hessian. Typically, this should be an k x k matrix corresponding to k parameters. The rows and columns should be named
预期的负导数的估计函数,通常的Hessian矩阵的估计。通常情况下,这应该是一个k x kk参数对应矩阵。的行和列被命名为
参考文献----------References----------
Journal of Statistical Software, 16(9), 1–16. URL http://www.jstatsoft.org/v16/i09/.
参见----------See Also----------
lm, glm
lm,glm
实例----------Examples----------
## linear regression[#线性回归]
x <- sin(1:10)
y <- rnorm(10)
fm <- lm(y ~ x)
## bread: n * (x'x)^{-1}[#面包:N *(XX)^ {-1}]
bread(fm)
solve(crossprod(cbind(1, x))) * 10
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|