如何改善 Matplotlib 散点图的标签放置?


要改善 matplotlib 散点图的标签放置,我们可以首先绘制散点,然后用标签为这些点添加注释。

步骤

  • 使用 numpy 为x y 创建点。

  • 使用xpoints 创建标签。

  • 使用 scatter() 方法绘制散点。

  • 迭代标签、xpoints ypoints 并使用不同的属性为绘图添加标签、x 和 y。

  • 要显示图形,请使用 show() 方法。

import numpy as np
from matplotlib import pyplot as plt
plt.rcParams["figure.figsize"] = [7.00, 3.50]
plt.rcParams["figure.autolayout"] = True
xpoints = np.linspace(1, 10, 10)
ypoints = np.random.rand(10)
labels = ["%.2f" % i for i in xpoints]
plt.scatter(xpoints, ypoints, c=xpoints)
for label, x, y in zip(labels, xpoints, ypoints):
   plt.annotate(
      label,
      xy=(x, y), xytext=(-20, 20),
      textcoords='offset points', ha='right', va='bottom',
      bbox=dict(boxstyle='round,pad=0.5', fc='green', alpha=0.5),
      arrowprops=dict(arrowstyle='->', connectionstyle='arc3,rad=0'))
plt.show()

输出

更新于:06-May-2021

1K+ 浏览

启动您的 事业

通过完成课程取得资格认证

开始
广告