sp.vcov
位于 mgcv
包(package)。 说明
从 (RE)ML 估计的 gam
对象中提取对数平滑参数估计的估计协方差矩阵,前提是使用评估所需 Hessian 矩阵的方法进行拟合。
用法
sp.vcov(x,edge.correct=TRUE,reg=1e-3)
参数
x |
由 |
edge.correct |
如果模型拟合了 |
reg |
Hessian 正则化器 - 默认值相当于对数平滑参数的先验方差 1000。 |
细节
仅提取负(受限)对数似然与对数平滑参数的 hessian 矩阵的逆(如果这是作为拟合的一部分获得的)。
值
与对数平滑参数估计器的估计协方差矩阵相对应的矩阵(如果可以提取),否则 NULL
。如果尺度参数已被 (RE)ML 估计(即,如果方法是 "ML"
或 "REML"
并且尺度参数未知),则最后一行和最后一列与对数尺度参数相关。如果 edge.correct=TRUE
且用于拟合,则边校正平滑参数位于返回矩阵的属性 lsp
中。
例子
require(mgcv)
n <- 100
x <- runif(n);z <- runif(n)
y <- sin(x*2*pi) + rnorm(n)*.2
mod <- gam(y~s(x,bs="cc",k=10)+s(z),knots=list(x=seq(0,1,length=10)),
method="REML")
sp.vcov(mod)
作者
Simon N. Wood simon.wood@r-project.org
参考
Wood, S.N., N. Pya and B. Saefken (2016), Smoothing parameter and model selection for general smooth models (with discussion). Journal of the American Statistical Association 111, 1548-1575 doi:10.1080/01621459.2016.1180986
也可以看看
相关用法
- R spasm.construct 实验稀疏平滑器
- R scat 用于重尾数据的 GAM 缩放 t 系列
- R smooth.construct.cr.smooth.spec GAM 中的惩罚三次回归样条
- R smooth.construct.bs.smooth.spec GAM 中的惩罚 B 样条
- R smooth.construct GAM 中平滑项的构造函数
- R smooth.construct.sz.smooth.spec GAM 中的约束因子平滑交互
- R smooth.construct.re.smooth.spec GAM 中的简单随机效应
- R slanczos 计算对称矩阵的截断特征分解
- R single.index 具有 mgcv 的单指数模型
- R smooth.info 提供有关平滑规范的额外信息的通用函数
- R smooth2random 将平滑转换为适合估计随机效应的形式
- R smooth.construct.mrf.smooth.spec 马尔可夫随机场平滑
- R smooth.construct.gp.smooth.spec 低阶高斯过程平滑
- R smooth.construct.tp.smooth.spec GAM 中的惩罚薄板回归样条
- R smooth.construct.ad.smooth.spec GAM 中的自适应平滑
- R smooth.construct.so.smooth.spec 皂膜平滑剂
- R smooth.construct.ds.smooth.spec 低阶 Duchon 1977 样条
- R smooth.construct.fs.smooth.spec GAM 中平滑交互的因子
- R smooth.construct.ps.smooth.spec GAM 中的 P 样条
- R smooth.construct.sos.smooth.spec 球体上的样条线
- R smooth.construct.tensor.smooth.spec 张量积平滑构造函数
- R shash Sinh-arcsinh 位置比例和形状模型族
- R s 在 GAM 公式中定义平滑
- R smooth.construct.t2.smooth.spec 张量积平滑构造函数
- R smoothCon GAM 平滑项的预测/构造包装函数
注:本文由纯净天空筛选整理自R-devel大神的英文原创作品 Extract smoothing parameter estimator covariance matrix from (RE)ML GAM fit。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。