harishB97 commited on
Commit
8c6c968
·
verified ·
1 Parent(s): 08faaf8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +57 -1
app.py CHANGED
@@ -3,7 +3,63 @@ import gradio as gr
3
  def display_tree():
4
  # This function should create and return a Plotly figure of the tree
5
  # Currently returns a simple string, but should be replaced with actual graph
6
- return "Tree will be displayed here."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7
 
8
  def display_image_based_on_dropdown_1(dropdown_value):
9
  # This function should return an image based on the dropdown value
 
3
  def display_tree():
4
  # This function should create and return a Plotly figure of the tree
5
  # Currently returns a simple string, but should be replaced with actual graph
6
+
7
+ # Define the nodes and edges for the graph
8
+ nodes = ['Node 1', 'Node 2', 'Node 3', 'Node 4']
9
+ edges = [(0, 1), (0, 2), (2, 3)] # Edges are tuples of node indices
10
+
11
+ # Define positions for the nodes (you can use a layout algorithm for more complex graphs)
12
+ positions = [(0, 0), (1, 2), (1, -2), (2, 0)]
13
+
14
+ # Create traces for nodes and edges
15
+ edge_x = []
16
+ edge_y = []
17
+ for edge in edges:
18
+ x0, y0 = positions[edge[0]]
19
+ x1, y1 = positions[edge[1]]
20
+ edge_x.extend([x0, x1, None])
21
+ edge_y.extend([y0, y1, None])
22
+
23
+ edge_trace = go.Scatter(
24
+ x=edge_x, y=edge_y,
25
+ line=dict(width=2, color='Black'),
26
+ hoverinfo='none',
27
+ mode='lines')
28
+
29
+ node_x = [pos[0] for pos in positions]
30
+ node_y = [pos[1] for pos in positions]
31
+
32
+ node_trace = go.Scatter(
33
+ x=node_x, y=node_y,
34
+ mode='markers+text',
35
+ hoverinfo='text',
36
+ marker=dict(showscale=False, size=10, color='Goldenrod'),
37
+ text=nodes,
38
+ textposition="top center"
39
+ )
40
+
41
+ # Define the layout of the graph
42
+ layout = go.Layout(
43
+ showlegend=False,
44
+ hovermode='closest',
45
+ margin=dict(b=0, l=0, r=0, t=0),
46
+ xaxis=dict(showgrid=False, zeroline=False, showticklabels=False),
47
+ yaxis=dict(showgrid=False, zeroline=False, showticklabels=False)
48
+ )
49
+
50
+ # layout = go.Layout(
51
+ # paper_bgcolor='white', # Sets the color of the paper where the graph is drawn
52
+ # plot_bgcolor='white', # Sets the background color of the plotting area in-between x and y axes
53
+ # showlegend=False,
54
+ # hovermode='closest',
55
+ # margin=dict(b=0, l=0, r=0, t=0),
56
+ # xaxis=dict(showgrid=False, zeroline=False, showticklabels=False),
57
+ # yaxis=dict(showgrid=False, zeroline=False, showticklabels=False)
58
+ # )
59
+
60
+ # Create the figure
61
+ fig = go.Figure(data=[edge_trace, node_trace], layout=layout)
62
+ return fig
63
 
64
  def display_image_based_on_dropdown_1(dropdown_value):
65
  # This function should return an image based on the dropdown value