AIC.cal(quantchem)
AIC.cal()所属R语言包:quantchem
Akaike's An Information Criterion for calibration models
Akaike的信息准则校准模式
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This function computes a table of AIC values for given object inheriting from class 'cal' ('lmcal' and 'nlscal').
此函数计算表的AIC值给定的对象继承自类“CAL”(“lmcal和nlscal”的)。
用法----------Usage----------
AIC.cal(object, ..., k = 2)
参数----------Arguments----------
参数:object
a fitted calibration model of class 'lmcal' or 'nlscal'
一个装有校正模型的类“lmcal的”或“nlscal的”
参数:...
additional arguments (ignored)
额外的参数(忽略)
参数:k
the k parameter, for more information see AIC
参数k,了解更多信息,请参阅AIC
值----------Value----------
A matrix with AIC values for each fitted model.
一个矩阵与每个模型拟合的AIC值。
注意----------Note----------
The AIC values should not be directly compared, when models differ in response (for example log-log transformed and fitted with no
AIC值不能直接进行比较,当模特不同的反应(例如对数转换,并配有没有
(作者)----------Author(s)----------
Lukasz Komsta
参见----------See Also----------
lmcal, nlscal
lmcal,nlscal
实例----------Examples----------
data(ibuprofen)
attach(ibuprofen)
fit = lmcal(conc,area)
AIC(fit)
fit = nlscal(conc,area)
AIC(fit)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|