Skip to content
This repository has been archived by the owner on Jun 5, 2019. It is now read-only.

Commit

Permalink
Include reference to Histogram bug
Browse files Browse the repository at this point in the history
  • Loading branch information
twaugh committed Mar 2, 2016
1 parent c95df0a commit 0404265
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions visual.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@

def MyHistogram(data, bins, **kwargs):
# Work around bokeh.charts.Histogram bug
# https://github.com/bokeh/bokeh/issues/3875
p = figure(**kwargs)
hist, edges = np.histogram(data, density=False, bins=bins)
p.quad(top=hist, bottom=0, left=edges[:-1], right=edges[1:],
Expand Down

0 comments on commit 0404265

Please sign in to comment.