PipeGraph Decorator
This commit is contained in:
parent
e28c446569
commit
8f6699ecc6
14 changed files with 357 additions and 136 deletions
16
assets/graphviz/pygraphviz_example.py
Normal file
16
assets/graphviz/pygraphviz_example.py
Normal 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")
|
||||
Loading…
Add table
Add a link
Reference in a new issue