latEDtable(edd)
latEDtable()所属R语言包:edd
use latex tags for dimnames of table created from edd classification
使用乳胶表dimnames从EDD分类创建标签
译者:生物统计家园网 机器人LoveR
描述----------Description----------
use latex tags for dimnames of table created from edd classification
使用乳胶表dimnames从EDD分类创建标签
用法----------Usage----------
latEDtable(x, baselist=eddDistList, reorder=NULL)
参数----------Arguments----------
参数:x
x – a table (possibly two dimensional) of results of applying edd
X - Edd还是应用结果表(可能是二维)
参数:baselist
baselist – a list of eddDist objects
baselist - eddDist对象名单
参数:reorder
reorder – a numeric vector describing how to re order the table rows/columns
重新排序 - 数字矢量描述如何重新顺序表中的行/列
Details
详情----------Details----------
for use with xtable rendering. table will give results with margin names in lexicographic order; reorder can be used to get a different order.
使用xtable渲染。表将结果与保证金名字典顺序重新排列,可以被用来得到不同的顺序。
值----------Value----------
a matrix with dimnames computed from the latexTag slots of the corresponding eddDist objects
计算矩阵从相应eddDist对象的latexTag插槽与dimnames
作者(S)----------Author(s)----------
Vince Carey <stvjc@channing.harvard.edu>
举例----------Examples----------
require(Biobase)
data(sample.ExpressionSet)
# should filter to genes with reasonable variation[应过滤到合理的变异基因]
rawTab <- table( edd(sample.ExpressionSet, meth="nnet", size=10, decay=.2) )
latEDtable(rawTab)
library(xtable)
xtable(latEDtable(rawTab))
#[]
realTags <- sapply(eddDistList,tag)
reo <- match(realTags,names(rawTab))
xtable(latEDtable(rawTab,reorder=reo))
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|