Graphviz (Wordhole)

From XPUB & Lens-Based wiki

This is an entry for 'Graphviz' for the Wordhole Glossary.

Definitions

  1. Graphviz is a package of open source tools initiated by AT&T Labs Research for graph visualization. The name is a stylized contraction of 'graph visualisation software', i.e. software that provides a way of representing structural information as diagrams of abstract graphs and networks. It uses DOT Lanugage scripts. (From Graphviz and Wikipedia)

Application (as used by us)

Graphviz has been used to create graphs, for example in an attempt to visualize different questions on archives (see pad of 2023-10-10).

Application (other contexts)

See https://en.wikipedia.org/wiki/Graphviz#Applications_that_use_Graphviz.

In context

  • 'I have used Graphviz to visualize the connections between the items of the glossary on this special issue.'

Example

Graphviz graph from the example code
digraph D {

  A [label="Hello" shape=diamond]
  B [label="XPUB" shape=box]
  C [label="1" shape=circle]

  A -> B 
  A -> C 
  A -> D 

}

Images and links

https://graphviz.org/

Wiki entry

See also

Flowchart