如何为Matplotlib中的hist2d绘图添加颜色条?
要为hist2d绘图添加颜色条,我们可以将标量可映射对象传递给colorbar()方法的参数。
步骤
- 使用numpy创建x和y数据点。
-
使用subplots()方法创建一个图形和一组子图。
-
使用hist2d()方法创建一个二维直方图。
-
为hist2d标量可映射实例创建一个颜色条。
-
要显示图形,请使用show()方法。
示例
import numpy as np
from matplotlib import pyplot as plt, colors
plt.rcParams["figure.figsize"] = [7.00, 3.50]
plt.rcParams["figure.autolayout"] = True
x = np.random.randn(100)
y = np.random.randn(100) + 5
fig, ax = plt.subplots()
hh = ax.hist2d(x, y, bins=40, norm=colors.LogNorm())
fig.colorbar(hh[3], ax=ax)
plt.show()