jsexauer / networkx_viewer

Interactive GUI for NetworkX graphs
GNU General Public License v3.0
137 stars 27 forks source link

suggestion: display all edges between two nodes... #16

Open phsimon opened 8 years ago

phsimon commented 8 years ago

Hi,

Thks for this software ! I really appreciate to be able to look at a node and, for instance, to see the path between two nodes. It helps me for understanding recommendation's algorithm.

When I use grow up from a node to another, networkx_view show me a path (when it is possible).

Would it be possible, to add a button like "all paths" (in addition to grow up or in the box on the right, near add)... ?

Best regards.

jsexauer commented 8 years ago

If you enter two or more nodes in the box on the right,, it will find the shortest path between them. You can also enter a new node and select "add to existing" and it will add it via the shortest path.

Adding all paths can be complex because depending on your graph, that may mean plotting every node.

phsimon commented 8 years ago

Ok, Thks. This is interesting to know that the path shown is the shortest.

and thks again for providing networkx_viewer !