assocstats(vcd)
assocstats()所属R语言包:vcd
Association Statistics
协会统计
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Computes the Pearson chi-Squared test, the Likelihood Ratio chi-Squared test, the phi coefficient, the contingency coefficient and Cramer's V.
计算的Pearson卡方检验,似然比卡方检验,披系数,应变系数和Cramer的V。
用法----------Usage----------
assocstats(x)
参数----------Arguments----------
参数:x
an r x c table.
r x c表。
值----------Value----------
A list with components:
组件列表:
参数:chisq_tests
a 2 x 3 table with the chi-squared statistics.
2 x 3表与卡方统计。
参数:phi
The phi coefficient.
披系数。
参数:cont
The contingency coefficient.
应变系数。
参数:cramer
Cramer's V.
Cramer的V。
(作者)----------Author(s)----------
David Meyer <a href="mailtoavid.Meyer@R-project.org">David.Meyer@R-project.org</a>
参考文献----------References----------
Visualizing Categorical Data. SAS Institute, Cary, NC.
实例----------Examples----------
data("Arthritis")
tab <- xtabs(~Improved + Treatment, data = Arthritis)
summary(assocstats(tab))
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|