Reputation: 21
I am using Graphviz as my visualization software for a network analysis program.The output of my program us a text file which contains edge connections between the nodes,but the input for Graphviz is a .dot format. so can anyone tell me how to convert .txt to .dot file or is there any software that can convert it into .dot format? P.S. My ouptut file contain close to 8,000 nodes and working on windows platform.
Upvotes: 0
Views: 4815
Reputation: 27326
You will need to either
If you post a snippet of the output file, we can help more. This is probably a 2 or 3 line shell, awk, or python script.
Upvotes: 1
Reputation: 162
As far as I can tell the dot file format is a grammar as defined by http://www.graphviz.org/doc/info/lang.html
And here is an example of it in use http://www.graphviz.org/content/cluster
Upvotes: 0