Graphviz: Difference between revisions

From XPUB & Lens-Based wiki
No edit summary
No edit summary
Line 8: Line 8:
* [[PythonGraphviz]]
* [[PythonGraphviz]]
* dot-to-ascii web editor: https://dot-to-ascii.ggerganov.com/
* dot-to-ascii web editor: https://dot-to-ascii.ggerganov.com/
* graphs in the Aesthetic Programming book made with graphviz: https://aesthetic-programming.net/ (OSP, Winnie Soon, Geoff Cox)
* OSP workshop at Karlsruhe with etherdot: http://osp.kitchen/workshop/karlsruhe/ (June 2023)


==dot language==
==dot language==

Revision as of 11:24, 30 September 2024

https://graphviz.org

Graphviz is open source graph visualization software. Graph visualization is a way of representing structural information as diagrams of abstract graphs and networks. It has important applications in networking, bioinformatics, software engineering, database and web design, machine learning, and in visual interfaces for other technical domains.

dot language

digraph D {

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

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

}

Nodes and edges

Graphviz works with nodes and edges: