FDSRashid commited on
Commit
478a03c
·
verified ·
1 Parent(s): 97ebd68

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -120,9 +120,9 @@ def visualize_isnad(taraf_num, yaxis):
120
  student_gen = -1
121
 
122
  if row['Source'] == '99999':
123
- net.add_node(source, font = {'size':50, 'color': 'Black'}, color = '#000000', label = f'{row['Teacher']}')
124
  else:
125
- net.add_node(source, font = {'size':30, 'color': 'red'}, color = value_to_hex(teacher_narrations), label = f'{row['Teacher']} \n {teacher_info["Narrator Rank"].to_list()[0]} \n ID: {row["Source"]} - Gen {teacher_gen}')
126
  net.add_node(target, font = {'size': 30, 'color': 'red'}, color = value_to_hex(student_narrations), label = f'{target} \n{student_info["Narrator Rank"].to_list()[0]} \n ID: {row["Destination"]} - Gen {student_gen}')
127
  net.add_edge(source, target, color = value_to_hex(int(row[f'{yaxis} Count'].to_list()[0])), label = f"{row[f'{yaxis} Count'].to_list()[0]}")
128
  net.barnes_hut(gravity=-5000, central_gravity=0.3, spring_length=200)
 
120
  student_gen = -1
121
 
122
  if row['Source'] == '99999':
123
+ net.add_node(source, font = {'size':50, 'color': 'Black'}, color = '#000000', label = f'{row["Teacher"]}')
124
  else:
125
+ net.add_node(source, font = {'size':30, 'color': 'red'}, color = value_to_hex(teacher_narrations), label = f'{row["Teacher"]} \n {teacher_info["Narrator Rank"].to_list()[0]} \n ID: {row["Source"]} - Gen {teacher_gen}')
126
  net.add_node(target, font = {'size': 30, 'color': 'red'}, color = value_to_hex(student_narrations), label = f'{target} \n{student_info["Narrator Rank"].to_list()[0]} \n ID: {row["Destination"]} - Gen {student_gen}')
127
  net.add_edge(source, target, color = value_to_hex(int(row[f'{yaxis} Count'].to_list()[0])), label = f"{row[f'{yaxis} Count'].to_list()[0]}")
128
  net.barnes_hut(gravity=-5000, central_gravity=0.3, spring_length=200)