compactList(annotationTools)
compactList()所属R语言包:annotationTools
Concatenate list elements
串连列表元素
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Concatenates given elements of a list.
串连给出一个列表中的元素。
用法----------Usage----------
compactList(lst,l)
参数----------Arguments----------
参数:lst
list object
列表中的对象
参数:l
numeric vector specifying the number of list elements to be concatenated sequentially
数字矢量指定的顺序被连接列表中的元素数量
Details
详情----------Details----------
By definition, the output list is shorter than the input list.
根据定义,输出列表是输入列表比短。
Function stops if 'sum(l)' does not equal 'lenght(lst)'.
功能停止如果的总和(L)“不等于”长度(LST)。
值----------Value----------
参数:clst
list of length 'length(l)' where the 'i'-th element has length 'l[i]' and contains concatenated elements of input list 'lst'.
列表长度的长度(L),δ-th元素长度“L [I]”,包含“乐善堂”串连输入列表中的元素。
作者(S)----------Author(s)----------
Alexandre Kuhn
举例----------Examples----------
##an example list[#一个例子列表]
lst<-vector('list',3)
lst[[1]]<-c('aaa','bbb')
lst[[2]]<-'ccc'
lst[[3]]<-'zzz'
##merge first 2 list elements[#合并前2个列表元素]
compactList(lst,c(2,1))
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|