logLik.lmList(nlme)
logLik.lmList()所属R语言包:nlme
Log-Likelihood of an lmList Object
对数似然一个lmList对象
译者:生物统计家园网 机器人LoveR
描述----------Description----------
If pool=FALSE, the (restricted) log-likelihoods of the lm components of object are summed together. Else, the (restricted) log-likelihood of the lm fit with different coefficients for each level of the grouping factor associated with the partitioning of the object components is obtained.
如果pool=FALSE,lm组件的日志(限制)的似然性object总结起来。否则,(限制)日志的可能性lm适合object组件分割分组因素的每个级别的不同系数得到。
用法----------Usage----------
## S3 method for class 'lmList'
logLik(object, REML, pool, ...)
参数----------Arguments----------
参数:object
an object inheriting from class lmList, representing a list of lm objects with a common model.
从类继承的对象lmList,lm对象代表一个共同的模式列表。
参数:REML
an optional logical value. If TRUE the restricted log-likelihood is returned, else, if FALSE, the log-likelihood is returned. Defaults to FALSE.
一个可选的逻辑值。如果TRUE限制日志的可能性则返回,否则,如果FALSE,日志返回的可能性。 FALSE默认。
参数:pool
an optional logical value indicating whether all lm components of object may be assumed to have the same error variance. Default is attr(object, "pool").
一个可选的逻辑值,指出是否所有lm成分object可以假设有相同的误差方差。默认attr(object, "pool")。
参数:...
some methods for this generic require additional arguments. None are used in this method.
这个通用的一些方法需要额外的参数。没有使用这种方法。
值----------Value----------
either the sum of the (restricted) log-likelihoods of each lm component in object, or the (restricted) log-likelihood for the lm fit with separate coefficients for each component of object.
(限制)每个lm组件object或lm适合每个组件具有独立系数(限制)对数似然数似然性的总和object。
作者(S)----------Author(s)----------
Jose Pinheiro and Douglas Bates <a href="mailto:bates@stat.wisc.edu">bates@stat.wisc.edu</a>
参见----------See Also----------
lmList, logLik.lme,
lmList,logLik.lme
举例----------Examples----------
fm1 <- lmList(distance ~ age | Subject, Orthodont)
logLik(fm1) # returns NA when it should not[返回不适用时,它不应该]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|