co_table(vcd)
co_table()所属R语言包:vcd
Compute Conditional Tables
计算条件表
译者:生物统计家园网 机器人LoveR
描述----------Description----------
For a contingency table in array form, compute a list of conditional tables given some margins.
对于数组形式的列联表,计算条件的表的列表给出了一些利润。
用法----------Usage----------
co_table(x, margin, collapse = ".")
参数----------Arguments----------
参数:x
a contingency table in array form.
联表数组形式。
参数:margin
margin index(es) or corresponding name(s) of the conditioning variables.
裕度指标(ES)或相应的条件变量的名称(S)。
参数:collapse
character used when collapsing level names (if more than 1 margin is specified).
倒塌的级别名称(如果超过1 margin指定)时使用的字符。
Details
详细信息----------Details----------
This is essentially an interface to [ which is more convenient for arrays of arbitrary dimension.
本质上来说,这是一个接口,[这是更方便的任意维的数组。
值----------Value----------
A list of the resulting conditional tables.
列表的条件表。
(作者)----------Author(s)----------
Achim Zeileis <a href="mailto:Achim.Zeileis@R-project.org">Achim.Zeileis@R-project.org</a>
实例----------Examples----------
data("HairEyeColor")
co_table(HairEyeColor, 1)
co_table(HairEyeColor, c("Hair", "Eye"))
co_table(HairEyeColor, 1:2, collapse = "")
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|