Chris q wrote: > Hi, > > I'm hoping you guys can point me to some software that will do this. I > have a list of pairs of data that I want to visualize. It's in the > format of two columns, with each row representing a connection between > the two items in the columns. So data would look like this: > > Column 1 Column 2 > A B > A C > B C
Graphviz would be my solution of choice for this situation. Your data above would be written as the following in 'dot' notation: digraph Connections { A -> B A -> C B -> C } You run that through dot: $ dot -Tps data.dot -o data.ps $ psd2pdf data.ps and you get http://circle.homeip.net/~lance/data.pdf --[Lance] -- GPG Fingerprint: 409B A409 A38D 92BF 15D9 6EEE 9A82 F2AC 69AC 07B9 CACert.org Assurer _______________________________________________ clug-talk mailing list clug-talk@clug.ca http://clug.ca/mailman/listinfo/clug-talk_clug.ca Mailing List Guidelines (http://clug.ca/ml_guidelines.php) **Please remove these lines when replying