Python Forum
How to draw a tree in garphviz
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
How to draw a tree in garphviz
#1
I want to draw a tree in python graphviz. I have data in excel with 3 columns. The first column is Tail, the second is Head and the third column is Label of edges.

I know how to draw tree in graphviz but the data is big and i can not identify by hand. I want to use loop 'for' to identify nodes,edges and labels.
How can i do this? I wrote these code for small data.but it doesn't work.

from graphviz import Digraph
d=Digraph()
node=[0,1,2,3,4]             //this data is big but i did for small and it imports from excel
edges=['01','02','13','14'] //this data is big but i did for small
for i in range(1,6):
   d.node('node','node')
for j in range(1,6):
  d.edges(['edges'])

print(d.source)
Reply
#2
see: https://graphviz.readthedocs.io/en/stabl...l#btree-py
Reply
#3
Thank you very much. I found how to create 300 nodes but i don't know how to make them.

how to make edges.
for example in d.edges('tail','head',label='x12')i want to call 'tail' ,'head' and label from excel
Reply


Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020