将极坐标图设置为顶部 0 度
我使用 matplotlib 创建了一个简单的极坐标图。我试图在顶部(12 点钟位置)而不是右侧(3 点钟位置)绘制 0 度的图。我在 matplotlib 文档中看不到任何简单的方法来执行此操作。
我发现了 StackOverflow 上的较旧问题,但接受的答案似乎不起作用,而且由于它已经存在一年多了,我认为现在可能有更好的方法来做到这一点。
有什么想法吗?
I have created a simple polar plot using matplotlib. I'm trying to make the plot with 0 degrees at the top (12 o'clock position) rather than the right-hand side (3 o'clock position). I can't see any simple way to do this in the matplotlib documentation.
I've found an older question here on StackOverflow, but the accepted answer doesn't seem to work, and as it's over a year old I thought there may be a better way to do it now.
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将
angle
替换为angle - pi/4
?Replace
angle
withangle - pi/4
?