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


Messages In This Thread
How to draw a tree in garphviz - by mandana - Apr-30-2019, 01:19 PM
RE: How to draw a tree in garphviz - by Larz60+ - Apr-30-2019, 03:09 PM
RE: How to draw a tree in garphviz - by mandana - May-01-2019, 08:23 PM

Forum Jump:

User Panel Messages

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