IC(gamlss)
IC()所属R语言包:gamlss
Gives the GAIC for a GAMLSS Object
给人的GAIC为一个GAMLSS的对象
译者:生物统计家园网 机器人LoveR
描述----------Description----------
IC is a function to calculate the Generalized Akaike information criterion (GAIC) for a given penalty k for a fitted GAMLSS object. The function AIC.gamlss is the method associated with a GAMLSS object of the generic function AIC. The function GAIC is a synonymous of the function AIC.gamlss. The function extractAIC is a the method associated a GAMLSS object of the generic function extractAIC and it is mainly used in the stepAIC function.
IC是一个函数来计算广义Akaike信息准则(GAIC),,一个给定的刑罚k一个装有GAMLSS对象。函数AIC.gamlss的通用功能AIC的一个GAMLSS对象与方法。函数GAIC的功能AIC.gamlss的代名词。函数extractAIC的方法的通用功能相关的一个GAMLSS的对象extractAIC,它主要用于,在stepAIC功能。
用法----------Usage----------
IC(object, k = 2)
## S3 method for class 'gamlss'
AIC(object, ..., k = 2)
GAIC(object, ..., k = 2 )
## S3 method for class 'gamlss'
extractAIC(fit, scale, k = 2, ...)
参数----------Arguments----------
参数:object
an gamlss fitted model
一个gamlss的拟合模型
参数:fit
an gamlss fitted model
一个gamlss的拟合模型
参数:...
allows several GAMLSS object to be compared using a GAIC
允许几个GAMLSS对象进行比较使用GAIC
参数:k
the penalty with default k=2.5
刑罚与默认k=2.5
参数:scale
this argument is not used in gamlss
这种说法是不使用gamlss
值----------Value----------
The function IC returns the GAIC for given penalty k of the GAMLSS object. The function AIC returns a matrix contains the df's and the GAIC's for given penalty k. The function GAIC returns identical results to AIC. The function extractAIC returns vector of length two with the degrees of freedom and the AIC criterion.
的功能IC返回GAIC的GAMLSS对象对于给定的罚款k的。函数AIC返回,矩阵包含DF和GAIC对于给定的刑罚K表。的功能GAICAIC返回相同的结果。函数extractAIC返回向量的长度与程度的自由和AIC准则。
(作者)----------Author(s)----------
Mikis Stasinopoulos <a href="mailto:d.stasinopoulos@londonmet.ac.uk">d.stasinopoulos@londonmet.ac.uk</a>
参考文献----------References----------
Appl. Statist., 54, part 3, pp 507-554.
Accompanying documentation in the current GAMLSS help files, (see also http://www.gamlss.org/).
Journal of Statistical Software, Vol. 23, Issue 7, Dec 2007, http://www.jstatsoft.org/v23/i07.
参见----------See Also----------
gamlss
gamlss
实例----------Examples----------
data(abdom)
mod1<-gamlss(y~pb(x),sigma.fo=~pb(x),family=BCT, data=abdom)
IC(mod1)
mod2<-gamlss(y~pb(x),sigma.fo=~x,family=BCT, data=abdom)
AIC(mod1,mod2,k=3)
GAIC(mod1,mod2,k=3)
extractAIC(mod1,k=3)
rm(mod1,mod2)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|