Difference between revisions of "Graphviz"

From Robert-Depot
Jump to: navigation, search
(Created page with "=Neato= "spring model'' layouts. This is the default tool to use if the graph is not too large (about 100 nodes) and you don't know anything else about it. Neato attempts to ...")
 
Line 1: Line 1:
 
=Neato=
 
=Neato=
"spring model'' layouts.  This is the default tool to use if the graph is not too large (about 100 nodes) and you don't know anything else about it. Neato attempts to minimize a global energy function, which is equivalent to statistical multi-dimensional scaling. [source http://www.graphviz.org/]
+
"spring model'' layouts.  This is the default tool to use if the graph is not too large (about 100 nodes) and you don't know anything else about it. Neato attempts to minimize a global energy function, which is equivalent to statistical multi-dimensional scaling. [ http://www.graphviz.org/|source]
<syntaxhighlight>
+
<syntaxhighlight lang="dot">
 
graph G {
 
graph G {
 
     run -- intr;
 
     run -- intr;

Revision as of 07:29, 16 January 2014

Neato

"spring model layouts. This is the default tool to use if the graph is not too large (about 100 nodes) and you don't know anything else about it. Neato attempts to minimize a global energy function, which is equivalent to statistical multi-dimensional scaling. [ http://www.graphviz.org/%7Csource]

graph G {
    run -- intr;
    intr -- runbl;
    runbl -- run;
    run -- kernel;
    kernel -- zombie;
    kernel -- sleep;
    kernel -- runmem;
    sleep -- swap;
    swap -- runswap;
    runswap -- new;
    runswap -- runmem;
    new -- runmem;
    sleep -- runmem;
}