corRatio
位於 nlme
包(package)。 說明
該函數是corRatio
類的構造函數,表示有理二次空間相關結構。令 表示範圍, 表示塊金效應,相距 的兩個觀測值之間的相關性在不存在塊金效應時為 ,在假設存在塊金效應時為 。使用此構造函數創建的對象稍後需要使用適當的 Initialize
方法進行初始化。
用法
corRatio(value, form, nugget, metric, fixed)
參數
value |
帶有約束形式的參數值的可選向量。如果 |
form |
|
nugget |
指示是否存在金塊效應的可選邏輯值。默認為 |
metric |
指定要使用的距離度量的可選字符串。當前可用的選項是 |
fixed |
一個可選的邏輯值,指示是否應允許係數在優化中變化,或保持固定在其初始值。默認為 |
值
類 corRatio
的對象,也繼承自類 corSpatial
,表示有理二次空間相關結構。
例子
sp1 <- corRatio(form = ~ x + y + z)
# example lme(..., corRatio ...)
# Pinheiro and Bates, pp. 222-249
fm1BW.lme <- lme(weight ~ Time * Diet, BodyWeight,
random = ~ Time)
# p. 223
fm2BW.lme <- update(fm1BW.lme, weights = varPower())
# p 246
fm3BW.lme <- update(fm2BW.lme,
correlation = corExp(form = ~ Time))
# p. 249
fm5BW.lme <- update(fm3BW.lme, correlation =
corRatio(form = ~ Time))
# example gls(..., corRatio ...)
# Pinheiro and Bates, pp. 261, 263
fm1Wheat2 <- gls(yield ~ variety - 1, Wheat2)
# p. 263
fm3Wheat2 <- update(fm1Wheat2, corr =
corRatio(c(12.5, 0.2),
form = ~ latitude + longitude,
nugget = TRUE))
作者
José Pinheiro and Douglas Bates bates@stat.wisc.edu
參考
Cressie, N.A.C. (1993), "Statistics for Spatial Data", J. Wiley & Sons.
Venables, W.N. and Ripley, B.D. (2002) "Modern Applied Statistics with S", 4th Edition, Springer-Verlag.
Littel, Milliken, Stroup, and Wolfinger (1996) "SAS Systems for Mixed Models", SAS Institute.
Pinheiro, J.C., and Bates, D.M. (2000) "Mixed-Effects Models in S and S-PLUS", Springer.
也可以看看
相關用法
- R corARMA ARMA(p,q) 相關結構
- R corLin 線性相關結構
- R corSymm 一般相關結構
- R corMatrix.pdMat 從 pdMat 對象中提取相關矩陣
- R corMatrix 提取相關矩陣
- R corFactor.corStruct corStruct 對象矩陣的因子
- R corExp 指數相關結構
- R corAR1 AR(1) 相關結構
- R corSpher 球麵相關結構
- R corFactor 相關矩陣的因子
- R corMatrix.reStruct 從 reStructure 對象的組件中提取相關矩陣
- R corGaus 高斯相關結構
- R corNatural 自然參數化中的一般相關性
- R corCAR1 連續 AR(1) 相關結構
- R corCompSymm 複合對稱相關結構
- R corSpatial 空間相關結構
- R corMatrix.corStruct corStruct 對象的矩陣
- R coef.modelStruct 提取模型結構對象係數
- R collapse.groupedData 折疊分組數據對象
- R comparePred 比較預測
- R coef.gnls 提取 glns 係數
- R coef.lmList 提取 lmList 係數
- R coef.pdMat pdMat 對象係數
- R coef.varFunc varFunc 對象係數
- R coef.lme 提取lme係數
注:本文由純淨天空篩選整理自R-devel大神的英文原創作品 Rational Quadratic Correlation Structure。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。