Kumarkishalaya commited on
Commit
bb10985
·
verified ·
1 Parent(s): abdd0a2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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