Skip to content

Instantly share code, notes, and snippets.

@infinite-Joy
Created August 5, 2017 06:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save infinite-Joy/ac5a88dc39cdecf9c0289e40324bebca to your computer and use it in GitHub Desktop.
Save infinite-Joy/ac5a88dc39cdecf9c0289e40324bebca to your computer and use it in GitHub Desktop.
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