Graphviz (Wordhole): Difference between revisions
(Create Wordhole entry for Graphviz based on https://pad.xpub.nl/p/Wed-11-Oct23) |
(Add Wordhole category) |
||
Line 1: | Line 1: | ||
This is an entry for 'Graphviz' for the Wordhole Glossary. | This is an entry for 'Graphviz' for the Wordhole Glossary. | ||
[[Category:Wordhole]] | |||
==Definitions== | ==Definitions== |
Revision as of 16:05, 11 October 2023
This is an entry for 'Graphviz' for the Wordhole Glossary.
Definitions
- 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.
Mentioned in
In context
- 'I have used Graphviz to visualize the connections between the items of the glossary on this special issue.'
Example
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