Is there an interactive graphing library for python

前端 未结 4 1206
后悔当初
后悔当初 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:26

    You should definitely look at the igraph library if you haven't.

    It's a powerful library that can handle large graphs and different layout styles. It can also be used for directed graphs and for interactive and non-interactive visualitzations in 2D and 3D according to the list of features. There is also a tutorial.

    Update: Another well-known library is NetworkX for which there are Python packages here. Note that the Mac/Windows software Nodebox, recommended by Acorn, uses NetworkX algorithms.

提交回复
热议问题