Graphviz (Wordhole): Difference between revisions

From XPUB & Lens-Based wiki
(Create Wordhole entry for Graphviz based on https://pad.xpub.nl/p/Wed-11-Oct23)
 
m (Change a header's size)
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
This is an entry for 'Graphviz' for the Wordhole Glossary.  
This is an entry for 'Graphviz' for the Wordhole Glossary.  


==Definitions==
[[Category:Wordhole]]
 
===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 32: Line 30:
}
}
</syntaxhighlight>
</syntaxhighlight>
==Images and links==
===Images and links===
https://graphviz.org/
https://graphviz.org/


[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]]

Latest revision as of 15:55, 1 November 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