如何在 Matplotlib 中使用数据坐标系外的注释?
我们可以使用 annotate() 方法将注释放在绘图外面。
步骤
- 设置图形大小并调整子图之间和周围的填充。
-
使用 numpy 创建 x 和 y 数据点。
-
使用 subplots() 方法创建图形和一组子图。
-
使用 scatter() 方法绘制带星号的 x 和 y 数据点,使用铜色映射。
-
为了在绘图外部放置注释,相应地使用 xy 坐标元组。
-
使用 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 = np.random.rand(100)
y = np.random.rand(100)
fig, ax = plt.subplots()
ax.scatter(x, y, c=y, marker="*", cmap="copper")
ax.annotate('Scatter points(outside the drawing)', xy=(0.30, 1.05), xycoords=ax.get_xaxis_transform())
plt.show()