我刚刚开始尝试使用 matplotlib,因为我经常遇到需要绘制一些数据的情况,matplotlib 似乎是一个很好的工具。我试图在主站点中调整椭圆示例,以便改为绘制两个圆圈,但是在运行代码之后,我发现没有显示任何补丁,我无法弄清楚到底是什么问题.. . 这是代码。提前致谢。
import numpy as np
import matplotlib.pyplot as plt
import matplotlib
import matplotlib.patches as mpatches
plt.axis([-3,3,-3,3])
ax = plt.axes([-3,3,-3,3])
# add a circle
art = mpatches.Circle([0,0], radius = 1, color = 'r', axes = ax)
ax.add_artist(art)
#add another circle
art = mpatches.Circle([0,0], radius = 0.1, color = 'b', axes = ax)
ax.add_artist(art)
print ax.patches
plt.show()