FDSRashid commited on
Commit
97ebd68
·
verified ·
1 Parent(s): 7bf20fc

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +32 -17
app.py CHANGED
@@ -85,31 +85,46 @@ def visualize_isnad(taraf_num, yaxis):
85
 
86
  #hadith_cleaned = isnad_info['Hadiths Cleaned'].apply(lambda x: any(i in x for i in taraf_hadith_split) )
87
  hadith_cleaned = isnad_info['Tarafs Cleaned'].apply(lambda x: taraf_num in x)
88
- isnad_hadith = isnad_info[hadith_cleaned][['Source', 'Destination']]
89
- narrators = isnad_hadith.applymap(lambda x: narrator_bios[narrator_bios['Rawi ID'] == int(x)]['Famous Name'].to_list()).rename(columns={"Source": "Teacher", "Destination": "Student"})
90
- isnad_hadith["Student"] = narrators['Student']
91
- isnad_hadith["Teacher"] = narrators['Teacher']
92
- filtered = isnad_hadith[(isnad_hadith['Teacher'].apply(lambda x: len(x)) == 1) & (isnad_hadith['Student'].apply(lambda x: len(x)) == 1)]
93
- filtered['Student'] = filtered['Student'].apply(lambda x: x[0])
94
- filtered['Teacher'] = filtered['Teacher'].apply(lambda x: x[0])
95
  net = Network(directed =True)
96
- for _, row in filtered.iterrows():
97
- source = row['Teacher']
98
- target = row['Student']
99
  teacher_info = narrator_bios[narrator_bios['Rawi ID'] == int(row['Source'])]
100
  student_info = narrator_bios[narrator_bios['Rawi ID'] == int(row['Destination'])]
101
- isnad = isnad_info[(isnad_info['Source'] == row['Source']) & (isnad_info['Destination'] == row['Destination'])]
102
- teacher_narrations = teacher_info['Number of Narrations'].to_list()[0]
103
- student_narrations = student_info['Number of Narrations'].to_list()[0]
 
 
 
 
 
 
 
 
104
 
105
- teacher_gen = teacher_info['Generation'].to_list()[0]
 
 
 
 
106
  student_gen = student_info['Generation'].to_list()[0]
 
 
 
 
 
107
  if row['Source'] == '99999':
108
- net.add_node(source, font = {'size':50, 'color': 'Black'}, color = '#000000')
109
  else:
110
- net.add_node(source, font = {'size':30, 'color': 'red'}, color = value_to_hex(teacher_narrations), label = f'{source} \n {teacher_info["Narrator Rank"].to_list()[0]} \n ID: {row["Source"]} - Gen {teacher_gen}')
111
  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}')
112
- net.add_edge(source, target, color = value_to_hex(int(isnad[f'{yaxis} Count'].to_list()[0])), label = f"{isnad[f'{yaxis} Count'].to_list()[0]}")
113
  net.barnes_hut(gravity=-5000, central_gravity=0.3, spring_length=200)
114
  html = net.generate_html()
115
  html = html.replace("'", "\"")
 
85
 
86
  #hadith_cleaned = isnad_info['Hadiths Cleaned'].apply(lambda x: any(i in x for i in taraf_hadith_split) )
87
  hadith_cleaned = isnad_info['Tarafs Cleaned'].apply(lambda x: taraf_num in x)
88
+ isnad_hadith = isnad_info[hadith_cleaned]
89
+ isnad_hadith['Teacher'] = isnad_hadith['Source'].apply(lambda x: narrator_bios[narrator_bios['Rawi ID'].astype(int) == int(x)]['Famous Name'].to_list())
90
+ isnad_hadith['Student'] = isnad_hadith['Destination'].apply(lambda x: narrator_bios[narrator_bios['Rawi ID'].astype(int) == int(x)]['Famous Name'].to_list())
91
+ isnad_hadith['Teacher'] = isnad_hadith['Teacher'].apply(lambda x: x[0] if len(x)==1 else 'فلان')
92
+ isnad_hadith['Student'] = isnad_hadith['Student'].apply(lambda x: x[0] if len(x)==1 else 'فلان')
 
 
93
  net = Network(directed =True)
94
+ for _, row in isnad_hadith.iterrows():
95
+ source = row['Source']
96
+ target = row['Destination']
97
  teacher_info = narrator_bios[narrator_bios['Rawi ID'] == int(row['Source'])]
98
  student_info = narrator_bios[narrator_bios['Rawi ID'] == int(row['Destination'])]
99
+
100
+ teacher_narrations = teacher_info['Number of Narrations'].to_list()
101
+ if len(teacher_narrations):
102
+ teacher_narrations = teacher_narrations[0]
103
+ else:
104
+ teacher_narrations = row['Hadith Count']
105
+ student_narrations = student_info['Number of Narrations'].to_list()
106
+ if len(student_narrations):
107
+ student_narrations = teacher_narrations[0]
108
+ else:
109
+ student_narrations = row['Hadith Count']
110
 
111
+ teacher_gen = teacher_info['Generation'].to_list()
112
+ if len(teacher_gen):
113
+ teacher_gen = teacher_gen[0]
114
+ else:
115
+ teacher_gen = -1
116
  student_gen = student_info['Generation'].to_list()[0]
117
+ if len(student_gen):
118
+ student_gen = student_gen[0]
119
+ else:
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)
129
  html = net.generate_html()
130
  html = html.replace("'", "\"")