Skip to content

Instantly share code, notes, and snippets.

@infinite-Joy
Created August 5, 2017 06:26
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
from bokeh.plotting import figure, show
p = figure(width=400, height=400)
p.quad(top=cumulative_distribution,
bottom=bottom,
left=[1, 2, 3, 4, 5, 6, 7],
right=[1.2, 2.2, 3.2, 4.2, 5.2, 6.2, 7.2],
color="#B3DE69")
show(p)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment