Update app.py
Browse files
app.py
CHANGED
@@ -85,7 +85,7 @@ def plot_bar_chart(similarity_scores, links_series):
|
|
85 |
bars = plt.barh(link_labels, sorted_scores, color='skyblue', edgecolor='black')
|
86 |
plt.xlabel('Similarity Score')
|
87 |
plt.ylabel('Links')
|
88 |
-
plt.title('Similarity Scores Bar Chart')
|
89 |
plt.xlim(0, 1) # Set x-axis scale from 0 to 1
|
90 |
plt.grid(True, axis='x')
|
91 |
|
|
|
85 |
bars = plt.barh(link_labels, sorted_scores, color='skyblue', edgecolor='black')
|
86 |
plt.xlabel('Similarity Score')
|
87 |
plt.ylabel('Links')
|
88 |
+
plt.title('Similarity Scores Bar Chart for the above links in the same order')
|
89 |
plt.xlim(0, 1) # Set x-axis scale from 0 to 1
|
90 |
plt.grid(True, axis='x')
|
91 |
|