如何在极坐标图中将点与平滑线连接起来?

时间:2018-12-06 00:03:13

标签: python matplotlib scatter-plot smoothing polar-coordinates

这是我的代码:

from matplotlib import pyplot as plt

dec = pd.read_csv('POLAR.txt', sep="    ", header=None, skiprows=1)

ra = [0,30,60,90,120,150,180,210,240,270,300,330] 
ra = [x/180.0*np.pi for x in ra]

ax = plt.subplot(111, projection='polar')
plt.polar(ra, dec, 'ok')
plt.plot(ra,dec, data=ra , marker='o', color='olive', linewidth=2)
ax.set_yticklabels([]) 

我仍然不确定如何连接最后一点和第一点。 这就是我得到的:

enter image description here

我想知道如何将点与曲线连接起来?反正有没有得到这个花生形图的方程式?

0 个答案:

没有答案