RangedDataList-class(IRanges)
RangedDataList-class()所属R语言包:IRanges
Lists of RangedData
对RangedData名单
译者:生物统计家园网 机器人LoveR
描述----------Description----------
A formal list of RangedData objects. Extends and inherits all its methods from List. One use case is to group together all of the samples from an experiment generating data on ranges.
一个RangedData对象的正式名单。从List延伸和继承其所有方法。一个用例是从范围上产生数据的实验组的所有样品。
构造----------Constructor----------
RangedDataList(...): Concatenates the RangedData objects in ... into a new RangedDataList.
RangedDataList(...)对象RangedData:串连...到一个新的RangedDataList。
其他方法----------Other methods----------
stack(x, indName = "sample"): Concantenates the elements of x into a RangedData, with a column named by indName that groups the records by their original element in x.
stack(x, indName = "sample"):Concantenates元素x到RangedData,indNamex该组的记录其原始元素命名列。
作者(S)----------Author(s)----------
Michael Lawrence
参见----------See Also----------
RangedData, the element type of this List.
RangedData这个List元素的类型。
举例----------Examples----------
ranges <- IRanges(c(1,2,3),c(4,5,6))
a <- RangedData(IRanges(c(1,2,3),c(4,5,6)), score = c(10L, 2L, NA))
b <- RangedData(IRanges(c(1,2,4),c(4,7,5)), score = c(3L, 5L, 7L))
RangedDataList(sample1 = a, sample2 = b)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|