crossTable(Rz)
crossTable()所属R语言包:Rz
Cross Tabulation
交叉表
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Output well-formatted cross tabulation. Also can genarate latex syntax of cross tabulation.
输出格式的交叉制表。也可以genarate乳胶交叉制表的语法。
用法----------Usage----------
crossTable(...)
## S3 method for class 'CrossTable'
summary(object, digits=3, latex=FALSE, ...)
参数----------Arguments----------
参数:...
passed to table
传递table的
参数:object
crossTable object
交叉表对象
参数:digits
integer, used for number formatting
整数,用于数字格式
参数:latex
logical, generate latex syntax if TRUE
逻辑,如果产生乳胶语法TRUE
值----------Value----------
crossTable returns a object which belongs to CrossTable class and table class.
crossTable返回一个对象,它属于交叉表的类和表类。
(作者)----------Author(s)----------
Masahiro Hayashi
实例----------Examples----------
sex <- factor(rbinom(1:1000, 1, 0.5), labels=c("male" , "female"))
age <- factor(rbinom(1:1000, 2, 0.4), labels=c("young", "middle", "old"))
weight <- factor(rbinom(1:1000, 2, 0.6), labels=c("light", "middle", "heavy"))
cross.table1 <- crossTable(sex, age)
summary(cross.table1)
cross.table2 <- crossTable(sex, age, weight)
summary(cross.table2)
summary(cross.table2, latex = TRUE)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|