oneRowPerId(cellHTS2)
oneRowPerId()所属R语言包:cellHTS2
Rearrange dataframe entries such that there is exactly one row
有整整一排,重新dataframe条目
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Rearrange dataframe entries such that there is exactly one row per ID. The IDs are taken from the argument ids and are matched against the first column of x. If an ID is missing in x[,1], a row with NA values is inserted. If an ID occurs multiple times in x[,1], rows are collapsed into characters of comma-separated values.
重新排列,每个ID恰好有一个行dataframe条目。的ID取自参数ids的,是对第一列x匹配。如果一个ID中缺少x[,1],NA值的行插入。如果一个ID出现在x[,1]多次,行被倍数成逗号分隔值的字符。
用法----------Usage----------
oneRowPerId(x, ids)
参数----------Arguments----------
参数:x
dataframe.
dataframe。
参数:ids
character vector.
特征向量。
值----------Value----------
A dataframe whose rows correspond 1:1 to ids.
一个dataframe行对应1:1ids。
作者(S)----------Author(s)----------
W. Huber <a href="mailto:huber@ebi.ac.uk">huber@ebi.ac.uk</a>, Ligia Pedroso Bras <a href="mailto:ligia@ebi.ac.uk">ligia@ebi.ac.uk</a>
举例----------Examples----------
x = data.frame(ids=I(c("a", "a", "c")), val=11:13)
oneRowPerId(x, letters[1:3])
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|