python怎么做极坐标图

python

matplotlib绘制极坐标图

创建极坐标图

matplotlib的pyplot子库提供了绘制极坐标图的方法,在调用subplot()创建子图时通过设置projection='polar',便可创建一个极坐标子图,然后调用plot()在极坐标子图中绘图。

下面就创建一个极坐标子图和一个直角坐标子图进行对比。

import matplotlib.pyplot as plt

ax1 = plt.subplot(121, projection='polar')

ax2 = plt.subplot(122)

ax1.plot(theta,theta/6,'--',lw=2)

ax2.plot(theta,theta/6,'--',lw=2)

plt.show()

推荐学习《Python教程》!

以上是 python怎么做极坐标图 的全部内容, 来源链接: utcz.com/z/525539.html

回到顶部