table2d_summary(vcd)
table2d_summary()所属R语言包:vcd
Summary of a 2-way Table
一个2路表的概要
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Prints a 2-way contingency table along with percentages, marginal, and conditional distributions.
打印2列联表的百分比,边缘,条件分布。
用法----------Usage----------
table2d_summary(object, margins = TRUE, percentages = FALSE,
conditionals = c("none", "row", "column"), ...)
参数----------Arguments----------
参数:object
a r x c-contingency table
r x c列联表
参数:margins
if TRUE, marginal distributions are computed.
如果TRUE,边缘分布计算。
参数:percentages
if TRUE, relative frequencies are computed.
如果TRUE,相对频率计算。
参数:conditionals
if not "none", the conditional distributions, given the row/column factor, are computed.
如果不是"none",有条件分布,给定的行/列因子计算。
参数:...
currently not used.
目前未使用。
值----------Value----------
Returns invisibly a r x c x k table, k depending on the amount of choices (at most 3).
返回无形r x c x k表,k取决于选择的量(至多为3)。
(作者)----------Author(s)----------
David Meyer <a href="mailtoavid.Meyer@R-project.org">David.Meyer@R-project.org</a>
参见----------See Also----------
mar_table, prop.table, independence_table
mar_table,prop.table,independence_table
实例----------Examples----------
data("UCBAdmissions")
table2d_summary(margin.table(UCBAdmissions, 1:2))
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|