xkcd_density

< step | back to Gallery | violin >

          from ggplot import *
          from bokeh import mpl
          from bokeh.plotting import show
          import matplotlib.pyplot as plt
          
          g = ggplot(diamonds, aes(x='price', color='cut')) + \
              geom_density()
          
          g.draw()
          
          plt.title("xkcd-ggplot-mpl based plot in Bokeh.")
          
          show(mpl.to_bokeh(name="xkcd_density", xkcd=True))
          

          Image Preview (right click -> 'Save As' to save PNG)