modFit(vcdExtra)
modFit()所属R语言包:vcdExtra
Brief Summary of Model Fit for a glm or loglm Object
小结一个的GLM或者loglm对象模型的拟合
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Formats a brief summary of model fit for a glm or loglm object, showing the likelihood ratio Chisq (df) value and or AIC. Useful for inclusion in a plot title or annotation.
格式简要介绍模型的拟合一个glm或loglm对象,表现出的可能性比Chisq值(DF)和AIC。可包含在图形标题或注释。
用法----------Usage----------
modFit(x, ...)
## S3 method for class 'glm'
modFit(x, stats="chisq", digits=2, ...)
## S3 method for class 'loglm'
modFit(x, stats="chisq", digits=2, ...)
参数----------Arguments----------
参数:x
A glm or loglm object
Aglm或loglm对象
参数:...
Arguments passed down
参数传下来的
参数:stats
One or more of chisq or aic, determining the statistics displayed.
的chisq或aic中的一个或多个,确定显示的统计信息。
参数:digits
Number of digits after the decimal point in displayed statistics.
小数点后的数字显示的统计数。
值----------Value----------
A character string containing the formatted values of the chosen statistics.
包含一个字符串的格式化值所选择的统计。
(作者)----------Author(s)----------
Michael Friendly
参见----------See Also----------
summarise
summarise
实例----------Examples----------
data(Mental)
(Mental.tab <- xtabs(Freq ~ ses+mental, data=Mental))
(Mental.mod <- loglm(~ses+mental, Mental.tab))
Mental.mod
modFit(Mental.mod)
# use to label mosaic()[使用标签马赛克()]
mosaic(Mental.mod, main=paste("Independence model,", modFit(Mental.mod)))
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|