Skip to content

Commit

Permalink
Fix #33
Browse files Browse the repository at this point in the history
  • Loading branch information
severinsimmler committed May 12, 2018
1 parent 26fd147 commit a276060
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions application/utils.py
Expand Up @@ -132,8 +132,8 @@ def outliers(group):
fig.segment(x_labels, upper.score, x_labels, q3.score, line_color='black')
fig.segment(x_labels, lower.score, x_labels, q1.score, line_color='black')

fig.vbar(x_labels, 0.7, q2.score, q3.score, fill_color='#ffffff', line_color='black')
fig.vbar(x_labels, 0.7, q1.score, q2.score, fill_color='#ffffff', line_color='black')
fig.vbar(x_labels, 0.7, q2.score, q3.score, fill_color='#729fcf', line_color='black')
fig.vbar(x_labels, 0.7, q1.score, q2.score, fill_color='#729fcf', line_color='black')

fig.rect(x_labels, lower.score, 0.2, 0.01, line_color='black')
fig.rect(x_labels, upper.score, 0.2, 0.01, line_color='black')
Expand Down

0 comments on commit a276060

Please sign in to comment.