subg(RedeR)
subg()所属R语言包:RedeR
Subgraph of a graph.
子的图形。
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Creates a subgraph containing only nodes specified from a data frame, including all edges among neighbors.
创建一个只包含节点指定一个数据框,包括邻里之间的所有边缘的子。
用法----------Usage----------
subg(g, dat, refcol=1, maincomp=TRUE, connected=TRUE, transdat=TRUE)
参数----------Arguments----------
参数:g
An igraph object.
一个IGRAPH对象。
参数:dat
A data frame with node ids and attributes to be mapped to 'g'.
G被映射到一个节点ID和属性数据框。
参数:refcol
The reference column (node ids) in the 'dat' object.
参考列(节点ID)在“DAT”的对象。
参数:maincomp
Logical value, whether to return only the main component of the subgraph.
逻辑值,是否只返回子的主要组成部分。
参数:connected
Logical value, whether to return only connected nodes.
逻辑值,是否只返回连接的节点。
参数:transdat
Logical value, whether to transfer node attributes from the 'dat' object to the subgraph.
逻辑值,是否转移“DAT”对象的子节点的属性。
值----------Value----------
Returns a igraph object.
返回一个IGRAPH对象。
作者(S)----------Author(s)----------
Mauro Castro
举例----------Examples----------
data(hs.inter)
data(ER.deg)
subnet <- subg(g=hs.inter, dat=ER.deg$dat, refcol=1)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|