Difference between revisions of "Graph Types"
Jump to navigation
Jump to search
Line 3: | Line 3: | ||
; dot | ; dot | ||
: for directed graphs (standard) | : for directed graphs (standard) | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
<graphviz>#!/usr/bin/dot | <graphviz>#!/usr/bin/dot | ||
Line 52: | Line 43: | ||
</graphviz> | </graphviz> | ||
− | + | ; neato | |
+ | : for undirected graphs | ||
<graphviz>#!/usr/bin/neato | <graphviz>#!/usr/bin/neato | ||
Line 93: | Line 85: | ||
</graphviz> | </graphviz> | ||
+ | ; twopi | ||
+ | : radial layouts of graphs | ||
<graphviz>#!/usr/bin/twopi | <graphviz>#!/usr/bin/twopi | ||
Line 133: | Line 127: | ||
</graphviz> | </graphviz> | ||
+ | ; circo | ||
+ | : circular layouts of graphs | ||
<graphviz>#!/usr/bin/circo | <graphviz>#!/usr/bin/circo | ||
Line 173: | Line 169: | ||
</graphviz> | </graphviz> | ||
+ | ; fdp | ||
+ | : another one for undirected graphs | ||
<graphviz>#!/usr/bin/fdp | <graphviz>#!/usr/bin/fdp |
Revision as of 08:48, 29 October 2005
These are the same graphs shown with different rendering engines:
- dot
- for directed graphs (standard)
- neato
- for undirected graphs
- twopi
- radial layouts of graphs
- circo
- circular layouts of graphs
- fdp
- another one for undirected graphs