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

Travis-CI:

This Page

pylab_examples example code: hist2d_demo.pyΒΆ

(Source code, png, pdf)

../../_images/hist2d_demo1.png
import matplotlib.pyplot as plt
import numpy as np
x = np.random.randn(1000)
y = np.random.randn(1000) + 5

# normal distribution center at x=0 and y=5
plt.hist2d(x, y, bins=40)
plt.show()

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