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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。