ng_graph(RnavGraph)
ng_graph()所属R语言包:RnavGraph
Create an NG_data object to be used by a navGraph session
由navGraph会话创建一个NG_data的要使用的对象物
译者:生物统计家园网 机器人LoveR
描述----------Description----------
NG_graph objects wrap the transition graphs and additional information such as graph name and graph layout.
NG_graph对象包装的的过渡图形和附加信息,如图形的名称和图形布局。
The node names of the graph split by the chosen sep character sting must match either the variable names- or the short names of the NG_data object.
图分割的节点名称由所选择的:sep字符刺痛必须匹配的变量名或短名称的NG_data对象的。
用法----------Usage----------
ng_graph(name, graph, sep = ":", layout = "circle")
参数----------Arguments----------
参数:name
Name of graph. This name will be displayed in the pull down menu within a navGraph session.
图形的名称。此名称将显示在下拉菜单中在navGraph会议。
参数:graph
Undirected graph objects of class graph. See the package graph.
无向图的对象类graph。见的包graph。
参数:sep
Node names represent a set of variables whose name are separated by the character string sep (containing no spaces).
节点的名字所代表的一组变量名之间的字符串sep(不含空格)。
参数:layout
One of the following strings: "circle", "kamadaKawaiSpring", "fruchtermanReingold" or "random".
以下字符串之一:“圆”,“kamadaKawaiSpring”,“fruchtermanReingold”或“随机”。
Details
详细信息----------Details----------
The number of sep occurrences in each node name of the graph must be the same.
sep出现在每个节点中的图形名称的数目必须是相同的。
值----------Value----------
NG_graph object.
NG_graph对象。
(作者)----------Author(s)----------
Adrian Waddell and R. Wayne Oldford
参见----------See Also----------
navGraph, newgraph, completegraph, linegraph, complement, ng_get-methods, ng_set-methods
navGraph,newgraph,completegraph,linegraph,complement,ng_get-methods,ng_set-methods
实例----------Examples----------
G <- completegraph(LETTERS[1:4])
LG <- linegraph(G, sep = "++")
ng.lg <- ng_graph("3d transition", LG, "++", "fruchtermanReingold" )
plot(ng.lg)
## If you have the Rgraphviz package working, plot graph object of class graph[#如果你有Rgraphviz包工作,图图形对象的类图]
## Not run: library(Rgraphviz)[#运行库(Rgraphviz)]
## Not run: plot(LG)[#未运行图(LG)]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|