本文整理汇总了Python中igraph.Graph.vs['label'][i_node]方法的典型用法代码示例。如果您正苦于以下问题:Python Graph.vs['label'][i_node]方法的具体用法?Python Graph.vs['label'][i_node]怎么用?Python Graph.vs['label'][i_node]使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类igraph.Graph
的用法示例。
在下文中一共展示了Graph.vs['label'][i_node]方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: disp_tree
# 需要导入模块: from igraph import Graph [as 别名]
# 或者: from igraph.Graph import vs['label'][i_node] [as 别名]
def disp_tree(tree):
from igraph import Graph, plot
g = Graph(directed=True)
g.add_vertices(len(tree))
g.vs['label'] = [node.name for node in tree]
nodes_to_add = set([0])
while len(nodes_to_add) != 0:
i_node = nodes_to_add.pop()
node = tree[i_node]
g.vs['label'][i_node] = node.name
left_node = node.left_child
right_node = node.right_child
if left_node != None:
i_left = tree.index(left_node)
g.add_edges((i_node, i_left))
nodes_to_add.add(i_left)
if right_node != None:
i_right = tree.index(right_node)
g.add_edges((i_node, i_right))
nodes_to_add.add(i_right)
layout = g.layout_reingold_tilford(root=0)
plot(g, layout=layout, bbox=(0, 0, 3000, 1000))