在 Matplotlib 中在圆圈内放置文本


若要在 matplotlib 中在圆圈内放置文本,我们可以采取以下步骤 −

  • 使用 figure() 方法创建一个新图形或激活现有图形。

  • 向当前轴添加一个子图方法。

  • 使用Circle() 类创建圆形 实例。

  • 在绘图中添加圆形 路径。

  • 若要在圆圈中放置文本,我们可以使用 text() 方法。

  • 使用 xlim() ylim() 方法缩放 x 和 y 轴。

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

示例

import matplotlib
from matplotlib import pyplot as plt, patches
plt.rcParams["figure.figsize"] = [7.00, 3.50]
plt.rcParams["figure.autolayout"] = True
fig = plt.figure()
ax = fig.add_subplot(111)
circle = matplotlib.patches.Circle((0, 0), radius=1, color='yellow')
ax.add_patch(circle)
plt.text(-.25, 0, "This is a Circle")
plt.xlim([-4, 4])
plt.ylim([-4, 4])
plt.axis('equal')
plt.show()

输出

更新日期:12-5-2021

2K+ 浏览量

开启你的 职业生涯

通过完成课程获取认证

开始
广告