如何在使用python和xdot构建的图形中标记边缘
我已经找到了一种使用点语言在python中构建图形的方法。
import sys
import threading
import time
import networkx as nx
import xdot
import gtk
class MyClass(threading.Thread):
def __init__(self):
threading.Thread.__init__(self)
self.graph = nx.DiGraph(name="my_tree")
self.xdot = xdot.DotWindow()
self.xdot.connect('destroy', gtk.main_quit)
def run(self):
gtk.main()
def add_node(self, parent, node):
self.graph.add_edge(parent, node)
self.xdot.set_dotcode(nx.to_agraph(self.graph).to_string())
self.xdot.show_all()
def main(argv=None):
gtk.gdk.threads_init()
my_class = MyClass()
my_class.start()
my_class.add_node('operating_system', 'file_mgmt')
time.sleep(1.5)
if __name__ == "__main__":
sys.exit(main())
上述程序将自动创建一个在操作系统和文件管理概念之间具有优势的图形。概念将在省略号中标记。
我的问题是使用python语言在该边缘标记标签的“子类”,以便概念之间的关系清晰
有没有可用的机制?
答案 0 :(得分:6)
您可以将边缘标签指定为add_edge
的命名参数:
self.graph.add_edge(parent, node, label='subclass')
答案 1 :(得分:1)
def add_node(self, parent, node,i):
self.graph.add_edge(parent, node, label = i)
self.xdot.set_dotcode(nx.to_agraph(self.graph).to_string())
self.xdot.show_all()
所以这样,我认为我们每次都可以动态传递标签并捕获所有关系,而不仅仅是子类。