Graphviz: Difference between revisions
No edit summary |
No edit summary |
||
Line 7: | Line 7: | ||
* examples: https://renenyffenegger.ch/notes/tools/Graphviz/examples/index | * examples: https://renenyffenegger.ch/notes/tools/Graphviz/examples/index | ||
* [[PythonGraphviz]] | * [[PythonGraphviz]] | ||
* web editor: https://dot-to-ascii.ggerganov.com/ | * dot-to-ascii web editor: https://dot-to-ascii.ggerganov.com/ | ||
==dot language== | ==dot language== |
Revision as of 10:20, 30 September 2024
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.
- examples: https://renenyffenegger.ch/notes/tools/Graphviz/examples/index
- PythonGraphviz
- dot-to-ascii web editor: https://dot-to-ascii.ggerganov.com/
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: