This docs on this page refers to a PREVIOUS VERSION. For the latest stable release, go to https://docs.bokeh.org/

Archived docs for versions <= 1.0.4 have had to be modified from their original published configuration, and may be missing some features (e.g. source listing)

All users are encourage to update to version 1.1 or later, as soon as they are able.

Bokeh Docs

image

< histogram | back to Gallery | slider >

          import numpy as np
          
          from bokeh.plotting import figure, show, output_file
          
          N = 500
          x = np.linspace(0, 10, N)
          y = np.linspace(0, 10, N)
          xx, yy = np.meshgrid(x, y)
          d = np.sin(xx)*np.cos(yy)
          
          p = figure(x_range=(0, 10), y_range=(0, 10))
          
          # must give a vector of image data for image parameter
          p.image(image=[d], x=0, y=0, dw=10, dh=10, palette="Spectral11")
          
          output_file("image.html", title="image.py example")
          
          show(p)  # open a browser