3

I am using networkx package to draw power law graphs. I want to simulate a search algorithm on this graph and want to visually see the algorithm move from one node to another on the graph. How do I do that?

Alex Brasetvik
  • 11,218
  • 2
  • 35
  • 36
Bruce
  • 33,927
  • 76
  • 174
  • 262

2 Answers2

1

On a mac you could use NodeBox: http://nodebox.net/.

pseudosudo
  • 6,270
  • 9
  • 40
  • 53
1

NetworkX supports drawing using Graphviz and matplotlib. Did you read the drawing-chapter in its documentation?

Alex Brasetvik
  • 11,218
  • 2
  • 35
  • 36