Graphviz (Wordhole): Difference between revisions

From XPUB & Lens-Based wiki
(Add Wordhole category)
(Change header sizes)
Line 3: Line 3:
[[Category:Wordhole]]
[[Category:Wordhole]]


==Definitions==
===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 [https://graphviz.org/ Graphviz] and [https://en.wikipedia.org/wiki/Graphviz Wikipedia])
# 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 [https://graphviz.org/ Graphviz] and [https://en.wikipedia.org/wiki/Graphviz Wikipedia])


==Application (as used by us)==
===Application (as used by us)===
Graphviz has been used to create graphs, for example in an attempt to visualize different questions on archives (see [https://pzwiki.wdka.nl/mediadesign/Radio_aporee pad of 2023-10-10]).  
Graphviz has been used to create graphs, for example in an attempt to visualize different questions on archives (see [https://pzwiki.wdka.nl/mediadesign/Radio_aporee pad of 2023-10-10]).  


==Application (other contexts)==
===Application (other contexts)===
See https://en.wikipedia.org/wiki/Graphviz#Applications_that_use_Graphviz.
See https://en.wikipedia.org/wiki/Graphviz#Applications_that_use_Graphviz.


==Mentioned in==
===In context===
 
==In context==
* 'I have used Graphviz to visualize the connections between the items of the glossary on this special issue.'
* 'I have used Graphviz to visualize the connections between the items of the glossary on this special issue.'






==Example==
===Example===
[[File:Graphviz example.png|thumb|right|Graphviz graph from the example code]]
[[File:Graphviz example.png|thumb|right|Graphviz graph from the example code]]
<syntaxhighlight lang="dot">
<syntaxhighlight lang="dot">
Line 39: Line 37:
[https://pzwiki.wdka.nl/mediadesign/Graphviz Wiki entry]
[https://pzwiki.wdka.nl/mediadesign/Graphviz Wiki entry]


 
===See also===
==See also==
[[Flowchart_(Wordhole)|Flowchart]]
[[Flowchart_(Wordhole)|Flowchart]]

Revision as of 14:16, 12 October 2023

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