nlme.nlsList
位於 nlme
包(package)。 說明
如果 random
中定義的隨機效應名稱是 lmList
對象係數名稱的子集,則獲得隨機效應協方差矩陣的初始估計(覆蓋 random
中給出的任何值)。用於獲取 fixed
的調用序列中的 formula(fixed)
和 data
參數作為 fixed
和 data
參數以及函數調用中的任何其他附加參數傳遞給 nlme.formula
。有關該函數的說明,請參閱 nlme.formula
的文檔。
用法
## S3 method for class 'nlsList'
nlme(model, data, fixed, random, groups, start, correlation, weights,
subset, method, na.action, naPattern, control, verbose)
參數
model |
繼承自類 |
data |
包含此參數是為了與通用函數保持一致。在此方法函數中它被忽略。 |
fixed |
包含此參數是為了與通用函數保持一致。在此方法函數中它被忽略。 |
random |
不帶條件表達式的可選單側線性公式,或具有 |
groups |
|
start |
可選的數值向量,或固定效應和隨機效應的初始估計列表。如果聲明為數值向量,它將在內部轉換為具有單個組件 |
correlation |
說明組內相關結構的可選 |
weights |
可選的 |
subset |
一個可選表達式,指示應在擬合中使用的 |
method |
一個字符串。如果 |
na.action |
一個函數,指示當數據包含 |
naPattern |
表達式或公式對象,指定哪些返回值被視為缺失。 |
control |
估計算法的控製值列表,用於替換函數 |
verbose |
可選的邏輯值。如果打印 |
值
代表線性混合效應模型擬合的 nlme
類的對象。 print
、 plot
和 summary
等通用函數具有顯示擬合結果的方法。有關配合的組成部分,請參閱nlmeObject
。函數 resid
、 coef
、 fitted
、 fixed.effects
和 random.effects
可用於提取其某些組件。
例子
fm1 <- nlsList(SSasymp, data = Loblolly)
fm2 <- nlme(fm1, random = Asym ~ 1)
summary(fm1)
summary(fm2)
作者
José Pinheiro and Douglas Bates bates@stat.wisc.edu
參考
The computational methods follow on the general framework of Lindstrom,
M.J. and Bates, D.M. (1988). The model formulation is described in
Laird, N.M. and Ware, J.H. (1982). The variance-covariance
parametrizations are described in <Pinheiro, J.C. and Bates., D.M.
(1996). The different correlation structures available for the
correlation
argument are described in Box, G.E.P., Jenkins,
G.M., and Reinsel G.C. (1994), Littel, R.C., Milliken, G.A., Stroup,
W.W., and Wolfinger, R.D. (1996), and Venables, W.N. and Ripley,
B.D. (2002). The use of variance functions for linear and nonlinear
mixed effects models is presented in detail in Davidian, M. and
Giltinan, D.M. (1995).
Box, G.E.P., Jenkins, G.M., and Reinsel G.C. (1994) "Time Series Analysis: Forecasting and Control", 3rd Edition, Holden-Day.
Davidian, M. and Giltinan, D.M. (1995) "Nonlinear Mixed Effects Models for Repeated Measurement Data", Chapman and Hall.
Laird, N.M. and Ware, J.H. (1982) "Random-Effects Models for Longitudinal Data", Biometrics, 38, 963-974.
Lindstrom, M.J. and Bates, D.M. (1988) "Newton-Raphson and EM Algorithms for Linear Mixed-Effects Models for Repeated-Measures Data", Journal of the American Statistical Association, 83, 1014-1022.
Littel, R.C., Milliken, G.A., Stroup, W.W., and Wolfinger, R.D. (1996) "SAS Systems for Mixed Models", SAS Institute.
Pinheiro, J.C. and Bates., D.M. (1996) "Unconstrained Parametrizations for Variance-Covariance Matrices", Statistics and Computing, 6, 289-296.
Venables, W.N. and Ripley, B.D. (2002) "Modern Applied Statistics with S", 4th Edition, Springer-Verlag.
也可以看看
nlme
, lmList
, nlmeObject
相關用法
- R nlmeStruct 非線性混合效應結構
- R nlme 非線性混合效應模型
- R nlmeControl nlme Fit 的控製值
- R nlsList.selfStart nlsList 通過 selfStart 函數擬合
- R nlsList 具有通用模型的 nls 對象列表
- R needUpdate.modelStruct 檢查 modelStruct 對象是否需要更新
- R needUpdate 檢查是否需要更新
- R Pixel X 射線像素強度隨時間的變化
- R corARMA ARMA(p,q) 相關結構
- R getGroupsFormula 提取分組公式
- R corRatio 有理二次相關結構
- R logLik.glsStruct glsStruct 對象的對數似然
- R intervals.lmList lmList 係數的置信區間
- R corLin 線性相關結構
- R plot.augPred 繪製 augPred 對象
- R print.varFunc 打印 varFunc 對象
- R recalc 重新計算壓縮線性模型對象
- R Variogram.corSpher 計算 corSpher 對象的半變異函數
- R getGroups.lme 提取 lme 對象組
- R predict.nlme 來自 nlme 對象的預測
- R corSymm 一般相關結構
- R qqnorm.gls gls 對象殘差的正態圖
- R pdCompSymm 具有複合對稱結構的正定矩陣
- R [.pdMat 下標 pdMat 對象
- R pdConstruct.pdBlocked 構造 pdBlocked 對象
注:本文由純淨天空篩選整理自R-devel大神的英文原創作品 NLME fit from nlsList Object。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。