coef(stats)
coef()所属R语言包:stats
Extract Model Coefficients
提取模型系数
译者:生物统计家园网 机器人LoveR
描述----------Description----------
coef is a generic function which extracts model coefficients from objects returned by modeling functions. coefficients is an alias for it.
coef是一个通用的函数提取返回的对象建模功能模型系数。 coefficients是它的一个别名。
用法----------Usage----------
coef(object, ...)
coefficients(object, ...)
参数----------Arguments----------
参数:object
an object for which the extraction of model coefficients is meaningful.
提取模型系数是有意义的对象。
参数:...
other arguments.
其他参数。
Details
详情----------Details----------
All object classes which are returned by model fitting functions should provide a coef method or use the default one. (Note that the method is for coef and not coefficients.)
模型拟合函数返回所有对象类都应该提供一个coef方法,或使用一个默认。 (请注意,该方法是coef不coefficients。)
Class "aov" has a coef method that does not report aliased coefficients (see alias).
类"aov"coef方法,不报告的别名系数(见alias)。
值----------Value----------
Coefficients extracted from the model object object.
从模型对象object系数提取。
参考文献----------References----------
Statistical Models in S. Wadsworth & Brooks/Cole.
参见----------See Also----------
fitted.values and residuals for related methods; glm, lm for model fitting.
fitted.values和residuals相关的方法,“glm,lm模型拟合。
举例----------Examples----------
x <- 1:5; coef(lm(c(1:3,7,6) ~ x))
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|