Howdy, > ...so the conections I would want to visualize are a to b, a to c and > B to c. I was thinking about doing a bubble map, but I'm not sure > what software to use...
I'm a big fan of dot, which is part of the graphviz suite of tools: http://www.graphviz.org/ Super easy way to visualize graph data. The format is easy to script or do manually. For your data set you would use: ---- digraph demo { A -> B; A -> C; B -> C; } ---- Save that into a file named demo.dot and then execute: ---- dot -Tps demo.dot > demo.ps ---- Best of luck, -Roy _______________________________________________ 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