green commited on
Commit
aa9d086
1 Parent(s): 3ebbe4a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -163,8 +163,8 @@ def show_length_graph():
163
  rects1 = ax.bar(x - width/2, original_length, width, color='lightgreen',zorder=0)
164
  rects2 = ax.bar(x + width/2, summarized_length, width, color='lightblue',zorder=0)
165
 
166
- rects3 = ax.bar(x - width/2, original_length, width, color='none',edgecolor='black', hatch='XX', lw=1.25,zorder=1)
167
- rects4 = ax.bar(x + width/2, summarized_length, width, color='none',edgecolor='black', hatch='xx', lw=1.25,zorder=1)
168
 
169
  # Add some text for labels, title and custom x-axis tick labels, etc.
170
  ax.set_ylabel('Text Length')
 
163
  rects1 = ax.bar(x - width/2, original_length, width, color='lightgreen',zorder=0)
164
  rects2 = ax.bar(x + width/2, summarized_length, width, color='lightblue',zorder=0)
165
 
166
+ rects3 = ax.bar(x - width/2, original_length, width, color='none',edgecolor='black', lw=1.25,zorder=1)
167
+ rects4 = ax.bar(x + width/2, summarized_length, width, color='none',edgecolor='black', lw=1.25,zorder=1)
168
 
169
  # Add some text for labels, title and custom x-axis tick labels, etc.
170
  ax.set_ylabel('Text Length')