如何使用 Matplotlib 中的 Python 将颜色条方向设为水平?
在 Python 中,要将颜色条方向设为水平,可在参数中使用 orientation="horizontal" 。
步骤
- 设置图像大小,调整子图之间和子图周围的填充。
- 使用 numpy 创建随机 x、y 和 z 数据点。
- 创建一个图像和一组子图。
- 使用 scatter() 方法绘制 x、y 和 z 数据点。
- 为 ScalarMappable 实例创建一个颜色条,方向为水平。
- 要显示图像,请使用 show() 方法。
示例
import numpy as np import matplotlib.pyplot as plt plt.rcParams["figure.figsize"] = [7.50, 3.50] plt.rcParams["figure.autolayout"] = True x, y, z = np.random.rand(3, 50) f, ax = plt.subplots() points = ax.scatter(x, y, c=z, s=50, cmap="plasma") f.colorbar(points, orientation="horizontal") plt.show()
输出
广告