gpt4 book ai didi

python - 自定义蜘蛛图 --> 在 matplotlib 中显示极坐标图上点之间的曲线而不是直线

转载 作者:行者123 更新时间:2023-12-02 00:35:13 25 4
gpt4 key购买 nike

我测量了不同产品在不同角度位置的位置(在完整旋转过程中以 60 度为步长的 6 个值)。我想使用极坐标图,而不是在笛卡尔图上表示我的值(其中 0 和 360 是同一点)。

使用matplotlib,我得到了一个蜘蛛图类型的图表,但我想避免点之间的直线并显示这些点之间的推断值。我有一个还不错的解决方案,但我希望有一个很好的“单线”我可以用来对某些点进行更真实的表示或更好的切线处理。

有人有改进我下面的代码的想法吗?

# Libraries
import matplotlib.pyplot as plt
import pandas as pd
import numpy as np

# Some data to play with
df = pd.DataFrame({'measure':[10, -5, 15,20,20, 20,15,5,10], 'angle':[0,45,90,135,180, 225, 270, 315,360]})

# The few lines I would like to avoid...
angles = [y/180*np.pi for x in [np.arange(x, x+45,5) for x in df.angle[:-1]] for y in x]
values = [y for x in [np.linspace(x, df.measure[i+1], 10)[:-1] for i, x in enumerate(df.measure[:-1])] for y in x]
angles.append(360/180*np.pi)
values.append(values[0])

# Initialise the spider plot
ax = plt.subplot(polar=True)

# Plot data
ax.plot(df.angle/180*np.pi, df['measure'], linewidth=1, linestyle='solid', label="Spider chart")
ax.plot(angles, values, linewidth=1, linestyle='solid', label='what I want')
ax.legend()

# Fill area
ax.fill(angles, values, 'b', alpha=0.1)

plt.show()

结果如下,我想要类似于橙色线的东西,并带有某种样条线,以避免我当前得到的尖角

looking for a smooth curb on a polar graph

最佳答案

我有一个由其他解决方案拼凑而成的解决方案。它需要清理和优化,但它完成了工作!

欢迎提出意见和改进,见下文

# https://stackoverflow.com/questions/33962717/interpolating-a-closed-curve-using-scipy

from scipy import interpolate

x=df.measure[:-1] * np.cos(df.angle[:-1]/180*np.pi)
y=df.measure[:-1] * np.sin(df.angle[:-1]/180*np.pi)
x = np.r_[x, x[0]]
y = np.r_[y, y[0]]

# fit splines to x=f(u) and y=g(u), treating both as periodic. also note that s=0
# is needed in order to force the spline fit to pass through all the input points.
tck, u = interpolate.splprep([x, y], s=0, per=True)

# evaluate the spline fits for 1000 evenly spaced distance values
xi, yi = interpolate.splev(np.linspace(0, 1, 1000), tck)

def cart2pol(x, y):
rho = np.sqrt(x**2 + y**2)
phi = np.arctan2(y, x)
return(rho, phi)

# Initialise the spider plot
plt.figure(figsize=(12,8))
ax = plt.subplot(polar=True)

# Plot data
ax.plot(df.angle/180*np.pi, df['measure'], linewidth=1, linestyle='solid', label="Spider chart")
ax.plot(angles, values, linewidth=1, linestyle='solid', label='Interval linearisation')
ax.plot(cart2pol(xi, yi)[1], cart2pol(xi, yi)[0], linewidth=1, linestyle='solid', label='Smooth interpolation')
ax.legend()

# Fill area
ax.fill(angles, values, 'b', alpha=0.1)

plt.show()

Smooth solution

关于python - 自定义蜘蛛图 --> 在 matplotlib 中显示极坐标图上点之间的曲线而不是直线,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59493724/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com