findAMstats(Category)
findAMstats()所属R语言包:Category
Compute per category summary statistics
计算每类的统计摘要
译者:生物统计家园网 机器人LoveR
描述----------Description----------
For a given incidence matrix, Amat, compute some per category statistics.
对于一个给定的关联矩阵,Amat,一些每个类别统计计算。
用法----------Usage----------
findAMstats(Amat, tstats)
参数----------Arguments----------
参数:Amat
An incidence matrix, with categories as the rows and probes as the columns.
一个关联矩阵的行和列的探针类别。
参数:tstats
A vector of per probe test statistics (should be the same length as ncol(Amat).
每个探针测试统计数据(矢量应该是相同的长度为ncol(Amat)。
Details
详情----------Details----------
Simple summary statistics are computed, such as the row sums and the vector of per category sums of the test statistics, tstats.
简单的汇总统计数据计算,如行款项和测试统计每类款项的向量,tstats。
值----------Value----------
A list with components,
与组件列表,
参数:eDE
per category sums of the test statistics
每类款项的测试统计
参数:lens
row sums of Amat
Amat行款项
作者(S)----------Author(s)----------
R. Gentleman
参见----------See Also----------
applyByCategory
applyByCategory
举例----------Examples----------
ts = rnorm(100)
Am = matrix(sample(c(0,1), 1000, replace=TRUE), ncol=100)
findAMstats(Am, ts)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|