table2(genomes)
table2()所属R语言包:genomes
Format and sort a contigency table
格式和排序备援表
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Formats the output of table into an matrix ordered by total counts in descending order
table到总计数递减的顺序排列的矩阵的输出格式
用法----------Usage----------
table2(..., n = 10)
参数----------Arguments----------
参数:...
one or more objects passed to table
一个或多个对象通过table
参数:n
number of rows to display, default 10
行数显示,默认为10
Details
详情----------Details----------
Currently limited to 1 or 2 dimensional table arrays.
目前仅限于1或2维表阵列。
值----------Value----------
A matrix, sorted by total counts in descending order. Any
一个矩阵,按降序总数排序。任何
作者(S)----------Author(s)----------
Chris Stubben
参见----------See Also----------
table
table
举例----------Examples----------
data(leuks)
table(leuks$subgroup)
table2(leuks$subgroup)
## to display all rows, use NA or a large number...[#显示所有的行,用NA或大量...]
table2(leuks$subgroup, n=100)
# 2-d table[2-D表]
table2(leuks$group, format(leuks$released, "%Y"))
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|