驚いたことに、matplotlib.pyplot(pylabは使用しないでください)を入力の中心(x、y)と半径rとして円を描く方法について、わかりやすい説明が見つかりませんでした。私はこれのいくつかの変種を試しました:
import matplotlib.pyplot as plt
circle=plt.Circle((0,0),2)
# here must be something like circle.plot() or not?
plt.show()
...しかし、まだ機能していません。
plt.Circle(..)
指示しmatplotlib.patches.Circle()
ます。したがって、pyplotなしのソリューションは次のようになりますcircle = matplotlib.patches.Circle(..); axes.add_artist(circle)
。