green commited on
Commit
f9119bc
·
1 Parent(s): 8a24173

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -255,7 +255,7 @@ with st.form(key='columns_in_form'):
255
  # Add some text for labels, title and custom x-axis tick labels, etc.
256
  ax.set_ylabel('Original Length')
257
  ax.set_xticks(x)
258
- ax.set_yticks([i for i in range(0,2500,250)])
259
  ax.set_xticklabels(labels)
260
  ax.set_xlabel('Summarized Length')
261
 
 
255
  # Add some text for labels, title and custom x-axis tick labels, etc.
256
  ax.set_ylabel('Original Length')
257
  ax.set_xticks(x)
258
+ ax.set_yticks([i for i in range(0,max(original_length),max(summarized_length))])
259
  ax.set_xticklabels(labels)
260
  ax.set_xlabel('Summarized Length')
261