pNode-class(Rgraphviz)
pNode-class()所属R语言包:Rgraphviz
Class "pNode": A class to plot nodes
pNode“类:一类积节点
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This class is used to transfer information to Graphviz
这个类是用来传递信息与graphviz
Details
详情----------Details----------
The attrs slot is a named list, where the names correspond to attributes and the values in the list correspond to the value for that element's attribute.
attrs槽是一个命名的列表,其中的名称对应列表中该元素的属性值对应的属性和值。
The subG slot describes which subgraph this node is a part of. A value of 0 implies that the node is not a member of any subgraph.
subG插槽描述其中子节点的一部分。值的0意味着该节点是没有任何子的成员。
类的对象----------Objects from the Class----------
Objects can be created by calls of the form new("pNode", ...).
创建对象可以通过电话的形式new("pNode", ...)。
插槽----------Slots----------
name: Object of class "character": The name of
name类"character":名称:对象
attrs: Object of class "list": A list of
attrs:Object类的"list":一个列表
subG: Object of class "integer": Which subgraph
subG:Object类的"integer":子
方法----------Methods----------
name signature(object = "pNode"): Retrieves the
名称signature(object = "pNode"):检索
作者(S)----------Author(s)----------
R. Gentleman and Jeff Gentry
参见----------See Also----------
pEdge, agopen, buildNodeList
pEdge,agopen,buildNodeList
举例----------Examples----------
set.seed(123)
V <- letters[1:10]
M <- 1:4
g1 <- randomGraph(V, M, .2)
z <- buildNodeList(g1)
z[[1]] ## Object of type pNode[#对象类型pNode]
name(z[[1]])
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|