如何在 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 Histogram') plt.show()
输出
广告