gpt4 book ai didi

Python 极地时钟样图与 matplotlib

转载 作者:行者123 更新时间:2023-11-28 21:47:10 27 4
gpt4 key购买 nike

我正在尝试以 this answer 的样式在 Python 中使用 matplotlib 以顺时针方式绘制数据.我在绘制数据时注意到奇怪的行为;数据点具有正确的 y 值,但不会出现在正确的 x 值处,即时间。我起初以为我的数据有误,但在使用以下工作示例重现我的问题后,我得出的结论是错误一定出在其他地方。

import numpy as np
import matplotlib.pyplot as plt

ax = plt.subplot(111, polar=True)
equals = np.linspace(0, 360, 24, endpoint=False) #np.arange(24)
ones = np.ones(24)
ax.scatter(equals, ones)

# Set the circumference labels
ax.set_xticks(np.linspace(0, 2*np.pi, 24, endpoint=False))
ax.set_xticklabels(range(24))

# Make the labels go clockwise
ax.set_theta_direction(-1)

# Place 0 at the top
ax.set_theta_offset(np.pi/2.0)

plt.show()

这导致以下情节: enter image description here

考虑到 equals 的定义,我预计点的 x 值与小时数一致。它目前被定义为一个角度,但我也尝试将其定义为一个小时。为什么不是这种情况,我怎样才能让我的数据与相应的时间对齐?

最佳答案

Matplotlib 期望角度以弧度而不是度为单位(参见 open bug report )。您可以使用 numpy 函数 np.deg2rad 转换为弧度:

import numpy as np
import matplotlib.pyplot as plt

ax = plt.subplot(111, polar=True)
equals = np.linspace(0, 360, 24, endpoint=False) #np.arange(24)
ones = np.ones(24)
ax.scatter(np.deg2rad(equals), ones)

# Set the circumference labels
ax.set_xticks(np.linspace(0, 2*np.pi, 24, endpoint=False))
ax.set_xticklabels(range(24))

# Make the labels go clockwise
ax.set_theta_direction(-1)

# Place 0 at the top
ax.set_theta_offset(np.pi/2.0)

plt.show()

这会产生下图:

enter image description here

或者,您可以更改 equals 的定义以根据弧度生成角度:equals = np.linspace(0, 2*np.pi, 24, endpoint=False)

关于Python 极地时钟样图与 matplotlib,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36919275/

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