Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -333,7 +333,7 @@ def visualize_narrator_taraf(taraf_num, narrator, yaxis):
|
|
333 |
isnad_in_hadith1 = isnad_hadith['Hadiths Cleaned'].apply(lambda x: taraf_hadith_split[i] in x )
|
334 |
isnad_hadith1 = isnad_hadith[isnad_in_hadith1]
|
335 |
G1 = nx.from_pandas_edgelist(isnad_hadith1, source = 'Source', target = 'Destination', create_using = nx.DiGraph())
|
336 |
-
node = [n for n, d in
|
337 |
if narrator in list(G1.nodes):
|
338 |
matns_with_narrator.append(taraf_hadith[i])
|
339 |
for n in node:
|
|
|
333 |
isnad_in_hadith1 = isnad_hadith['Hadiths Cleaned'].apply(lambda x: taraf_hadith_split[i] in x )
|
334 |
isnad_hadith1 = isnad_hadith[isnad_in_hadith1]
|
335 |
G1 = nx.from_pandas_edgelist(isnad_hadith1, source = 'Source', target = 'Destination', create_using = nx.DiGraph())
|
336 |
+
node = [n for n, d in G1.out_degree() if d == 0]
|
337 |
if narrator in list(G1.nodes):
|
338 |
matns_with_narrator.append(taraf_hadith[i])
|
339 |
for n in node:
|