如何改善 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()
输出
广告