Update app.py
Browse files
app.py
CHANGED
|
@@ -253,7 +253,7 @@ with st.form(key='columns_in_form'):
|
|
| 253 |
rects4 = ax.bar(x + width/2, summarized_length, width, color='none',edgecolor='black', hatch='xx', lw=1.25,zorder=1)
|
| 254 |
|
| 255 |
# Add some text for labels, title and custom x-axis tick labels, etc.
|
| 256 |
-
ax.set_ylabel('
|
| 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)
|
|
|
|
| 253 |
rects4 = ax.bar(x + width/2, summarized_length, width, color='none',edgecolor='black', hatch='xx', lw=1.25,zorder=1)
|
| 254 |
|
| 255 |
# Add some text for labels, title and custom x-axis tick labels, etc.
|
| 256 |
+
ax.set_ylabel('Text 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)
|