Is there an interactive graphing library for python

前端 未结 4 1317
后悔当初
后悔当初 2021-01-29 19:12

I\'m looking for an interactive graphing library for Python.

By \"graph\", I meant a set of nodes connected by a set of vertices (not a plot of values over x-y axis, no

4条回答
  •  没有蜡笔的小新
    2021-01-29 19:35

    Looks like Nodebox might be what you want:

    http://nodebox.net/code/index.php/Graph Mac OSX

    http://www.cityinabottle.org/nodebox/ Windows (using OpenGL)

    Nodebox screenshot

    The graph object has functionality for mouse interaction as well, bundled in the graph.events object. It has the following properties:

    • graph.events.hovered: None or the node over which the mouse hovers.
    • graph.events.pressed: None or the node on which the mouse is pressing down.
    • graph.events.dragged: None or the node being dragged.
    • graph.events.clicked: None or the last node clicked.
    • graph.events.popup: when True, will display a popup window over the hovered node.

    Also came accross Gephi, looks like that might have the functionality you want as well.

    http://gephi.org/ Windows, Linux and Mac OSX

    Gephi is an interactive visualization and exploration platform for all kinds of networks and complex systems, dynamic and hierarchical graphs.

    gephi screenshot

提交回复
热议问题