mergeProfilesLists(goProfiles)
mergeProfilesLists()所属R语言包:goProfiles
Combines two lists of profiles into one
结合成一个两个配置文件列表
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Combines two lists of profiles, that is two lists with three components, 'MF', 'BP', 'CC' into a single one.
结合两份名单型材,这是两个有三个组成部分的列表,“中频”,“BP”,“CC”到一个单一的一个。
用法----------Usage----------
mergeProfilesLists(profilesList1, profilesList2, emptyCats = F, profNames = NULL)
参数----------Arguments----------
参数:profilesList1
First list to combine
相结合的第一个列表
参数:profilesList2
Second list to combine
结合第二个列表
参数:emptyCats
Boolean. Set to TRUE if there are empty categories that should be accounted for in any of the profiles
布尔值。如果有应占型材空类别设置为TRUE
参数:profNames
Names for the profiles (optional). If missing they are set to 'Frequency-1', 'Frequency-2',etc.
型材(可选)的名称。如果缺少它们设置为“频率-1”,“频率”等
值----------Value----------
A list of profiles with more than one column each.
与超过一列的配置文件列表。
作者(S)----------Author(s)----------
Alex Sanchez
举例----------Examples----------
require(goProfiles)
data(prostateIds)
welsh.MF <- basicProfile (welsh01EntrezIDs[1:100], onto="MF", level=2, orgPackage="org.Hs.eg.db")
singh.MF <- basicProfile (singh01EntrezIDs[1:100], onto="MF", level=2, orgPackage="org.Hs.eg.db")
plotProfiles(welsh.MF,'Functional profiles for Welsh dataset',percentage=TRUE)
welsh.singh.MF <-mergeProfilesLists(welsh.MF, singh.MF, profNames=c("Welsh", "Singh"))
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|