graphviz 强大的图结构可视化工具
Graph visualization is a way of representing structural information as diagrams of abstract graphs and networks. It has important applications in networking, bioinformatics,software engineering, database and web design, machine learning, and in visual interfaces for other technical domains.graphviz 可以将结构化的信息,以抽象图和网络的形式 展现出来。
主要用在 网络,生物信息学,软件工程,数据库和网站设计,机器学习。 digraph test4 {
main -> parse -> execute
main -> init
main -> cleanup
execute -> make_string
execute -> printf
init -> make_string
main -> printf
execute -> compare
}
digraph G {
{a b c} -> {d e f}
} digraph g {
node ;
node0;
node1;
node2;
node3;
node4;
node5;
node6;
node7;
node8;
"node0":f2 -> "node4":f1;
"node0":f0 -> "node1":f1;
"node1":f0 -> "node2":f1;
"node1":f2 -> "node3":f1;
"node2":f2 -> "node8":f1;
"node2":f0 -> "node7":f1;
"node4":f2 -> "node6":f1;
"node4":f0 -> "node5":f1;
}
这个软件看起来很不错!
页:
[1]