Matplotlib - Drawing a smooth circle in a polar plot(Matplotlib - 在极坐标图中绘制一个平滑的圆)
问题描述
我真的很喜欢 matplotlib 的极坐标图,并且很想继续使用它(因为无论如何我的数据点都是在极坐标中给出的,而且我的环境是圆形的).
I really like the polar plot of matplotlib and would love to keep working with it (since my data points are given in polar coordinates anyway and my environment is circular).
但是,在情节中,我想在特定点添加给定半径的圆.
However, in the plot, I would like to add circles of given radii at specific points.
通常,我会这样做:
ax = plt.subplot(111)
ax.scatter(data)
circle = plt.Circle((0,0), 0.5)
ax.add_artist(circle)
plt.show()
但是,在极坐标中,我不能使用圆形,因为它采用直角坐标.
However, in polar coordinates, I cannot use circle, since it assumes rectangular coordinates.
我想出的想法是:生成具有恒定径向坐标和 [0, 2PI] 中的角坐标的点数组或完全切换到直角坐标.两种解决方案都不太令人满意 - 使用 matplotlib 可以做得更好吗?
Ideas I have come up with are: generating an array of points with constant radial coordinate and an angular coordinate in [0, 2PI] or completely switching to rectangular coordinates. Both solutions are not really satisfactory - can one do any better with matplotlib?
谢谢!
推荐答案
可以设置Circle
的transform
参数:
%matplotlib inline
import pylab as pl
import numpy as np
N = 100
theta = np.random.rand(N)*np.pi*2
r = np.cos(theta*2) + np.random.randn(N)*0.1
ax = pl.subplot(111, polar=True)
ax.scatter(theta, r)
circle = pl.Circle((0.5, 0.3), 0.2, transform=ax.transData._b, color="red", alpha=0.4)
ax.add_artist(circle)
输出:
或 transform=ax.transProjectionAffine + ax.transAxes
如果您不喜欢使用私有属性.
or transform=ax.transProjectionAffine + ax.transAxes
if you don't like using the private attribute.
这篇关于Matplotlib - 在极坐标图中绘制一个平滑的圆的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Matplotlib - 在极坐标图中绘制一个平滑的圆
基础教程推荐
- 使用PyInstaller后在Windows中打开可执行文件时出错 2022-01-01
- 如何让 python 脚本监听来自另一个脚本的输入 2022-01-01
- Dask.array.套用_沿_轴:由于额外的元素([1]),使用dask.array的每一行作为另一个函数的输入失败 2022-01-01
- 筛选NumPy数组 2022-01-01
- 用于分类数据的跳跃记号标签 2022-01-01
- Python kivy 入口点 inflateRest2 无法定位 libpng16-16.dll 2022-01-01
- 线程时出现 msgbox 错误,GUI 块 2022-01-01
- 在 Python 中,如果我在一个“with"中返回.块,文件还会关闭吗? 2022-01-01
- 如何在海运重新绘制中自定义标题和y标签 2022-01-01
- 何时使用 os.name、sys.platform 或 platform.system? 2022-01-01