makeNetwork(BioNet)
makeNetwork()所属R语言包:BioNet
Create graph from source and target vectors
创建从源和目标向量图
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Function to create a graph in graphNEL or igraph format from a source and a target vector.
功能,以创建一个graphNEL或IGRAPH格式从一个源和目标向量图。
用法----------Usage----------
makeNetwork(source, target, edgemode="undirected", format=c("graphNEL", "igraph"))
参数----------Arguments----------
参数:source
Vector of source nodes.
矢量源节点。
参数:target
Vector of corresponding target nodes.
矢量相应的目标节点。
参数:edgemode
For an "undirected" or "directed" network.
对于“无方向”或“定向”的网络。
参数:format
Graph format, eiter graphNEL or igraph.
图表格式,eiter graphNEL或IGRAPH。
值----------Value----------
A graph object.
一个图形对象。
作者(S)----------Author(s)----------
Marcus Dittrich
参见----------See Also----------
loadNetwork.sif, saveNetwork
loadNetwork.sif,saveNetwork
举例----------Examples----------
source <- c("a", "b", "c", "d")
target <- c("b", "c", "a", "a")
graph <- makeNetwork(source, target, edgemode="undirected")
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|