Difference between revisions of "Graph Types"

From FreekiWiki
Jump to navigation Jump to search
Line 3: Line 3:
 
; dot
 
; dot
 
: for directed graphs (standard)  
 
: for directed graphs (standard)  
 +
: start graph like this: <nowiki><graphviz>#!/usr/bin/dot</nowiki>
 +
: or like this: <nowiki><graphviz></nowiki>
 +
  
 
<graphviz>#!/usr/bin/dot
 
<graphviz>#!/usr/bin/dot
Line 45: Line 48:
 
; neato
 
; neato
 
: for undirected graphs
 
: for undirected graphs
 +
: start graph like this: <nowiki><graphviz>#!/usr/bin/neato</nowiki>
  
 
<graphviz>#!/usr/bin/neato
 
<graphviz>#!/usr/bin/neato
Line 87: Line 91:
 
; twopi
 
; twopi
 
: radial layouts of graphs
 
: radial layouts of graphs
 +
: start graph like this: <nowiki><graphviz>#!/usr/bin/twopi</nowiki>
  
 
<graphviz>#!/usr/bin/twopi
 
<graphviz>#!/usr/bin/twopi
Line 129: Line 134:
 
; circo
 
; circo
 
: circular layouts of graphs
 
: circular layouts of graphs
 +
: start graph like this: <nowiki><graphviz>#!/usr/bin/circo</nowiki>
  
 
<graphviz>#!/usr/bin/circo
 
<graphviz>#!/usr/bin/circo
Line 171: Line 177:
 
; fdp
 
; fdp
 
: another one for undirected graphs
 
: another one for undirected graphs
 +
: start graph like this: <nowiki><graphviz>#!/usr/bin/fdp</nowiki>
  
 
<graphviz>#!/usr/bin/fdp
 
<graphviz>#!/usr/bin/fdp

Revision as of 08:54, 29 October 2005

These are the same graphs shown with different rendering engines:

dot
for directed graphs (standard)
start graph like this: <graphviz>#!/usr/bin/dot
or like this: <graphviz>


This is a graph with borders and nodes. Maybe there is an Imagemap used so the nodes may be linking to some Pages.

neato
for undirected graphs
start graph like this: <graphviz>#!/usr/bin/neato

This is a graph with borders and nodes. Maybe there is an Imagemap used so the nodes may be linking to some Pages.

twopi
radial layouts of graphs
start graph like this: <graphviz>#!/usr/bin/twopi

This is a graph with borders and nodes. Maybe there is an Imagemap used so the nodes may be linking to some Pages.

circo
circular layouts of graphs
start graph like this: <graphviz>#!/usr/bin/circo

This is a graph with borders and nodes. Maybe there is an Imagemap used so the nodes may be linking to some Pages.

fdp
another one for undirected graphs
start graph like this: <graphviz>#!/usr/bin/fdp

This is a graph with borders and nodes. Maybe there is an Imagemap used so the nodes may be linking to some Pages.