You are reading an old version of the documentation (v1.4.1). For the latest version see https://matplotlib.org/stable/
matplotlib

Previous topic

pylab_examples example code: hist2d_log_demo.py

Next topic

pylab_examples example code: histogram_percent_demo.py

This Page

pylab_examples example code: hist_colormapped.pyΒΆ

(Source code, png, hires.png, pdf)

../../_images/hist_colormapped.png
import numpy as np
import matplotlib.pyplot as plt
import matplotlib.cm as cm
import matplotlib.colors as colors

fig, ax = plt.subplots()
Ntotal = 1000
N, bins, patches = ax.hist(np.random.rand(Ntotal), 20)

#I'll color code by height, but you could use any scalar


# we need to normalize the data to 0..1 for the full
# range of the colormap
fracs = N.astype(float)/N.max()
norm = colors.Normalize(fracs.min(), fracs.max())

for thisfrac, thispatch in zip(fracs, patches):
    color = cm.jet(norm(thisfrac))
    thispatch.set_facecolor(color)


plt.show()

Keywords: python, matplotlib, pylab, example, codex (see Search examples)