Python-Matplotlib 25 极坐标
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python-Matplotlib 25 极坐标相关的知识,希望对你有一定的参考价值。
Python-Matplotlib 25 极坐标
EG1:
import numpy as np import matplotlib.pyplot as plt r = np.arange(1,6,1) print(r) theta = [0 , np.pi/2 , np.pi , 3*np.pi/2 , 2 * np.pi , ] # len(theta) == len(r) print(theta) ax = plt.subplot(111, projection=‘polar‘) ax.plot(theta, r, color=‘r‘, linewidth=4) ax.grid(True) plt.show()
EG2:
以上是关于Python-Matplotlib 25 极坐标的主要内容,如果未能解决你的问题,请参考以下文章
Python-matplotlib:调整坐标轴位置标签位置和标签方向,以及X轴刻度标签位置
Python-Matplotlib可视化——多方面自定义统计图绘制