PipeGraph Decorator

This commit is contained in:
Yûki VACHOT 2024-01-12 17:28:45 +01:00
parent e28c446569
commit 8f6699ecc6
14 changed files with 357 additions and 136 deletions

View file

@ -0,0 +1,16 @@
import pygraphviz as pgv
my_graph = pgv.AGraph(id='my_graph', name='my_graph')
my_graph.add_node(
'RAW_dataset_1',
label='RAW_dataset_1',
tooltip='tooltip text \r next line',
URL='https://google.be/',
target='_blank'
)
my_graph.add_node(
'node 1'
)
my_graph.layout(prog='dot')
my_graph.draw(path="../graphviz/my_graph.svg", format="svg")