如何在Matplotlib中绘制2D直方图?
要在matplotlib中绘制2D直方图,可以按照以下步骤进行操作−
- 设置图形大小并调整子图之间和周围的填充。
-
使用numpy创建x和y数据点。
-
创建一个图形和一组子图。
-
使用 hist2d() 方法绘制x和y。
-
设置绘图的标题。
-
要显示图形,请使用 show() 方法。
示例
import numpy as np
from matplotlib import pyplot as plt
plt.rcParams["figure.figsize"] = [7.50, 3.50]
plt.rcParams["figure.autolayout"] = True
x = 2 * np.random.randn(5000)
y = x + np.random.randn(5000)
fig, ax = plt.subplots()
_ = ax.hist2d(x[::10], y[::10])
ax.set_title('2D直方图')
plt.show()