如图所示,如何在一个图中绘制极坐标和笛卡尔子图

时间:2019-10-13 20:50:11

标签: matplotlib subplot polar-coordinates cartesian

我想生成一个半笛卡尔半极性的图。例如高斯曲线的另一侧为极坐标格式,另一半为笛卡尔格式。最好的方法是什么?

plot which is half cartesian and half polar

我尝试共享y轴,但一次绘制采用两种不同类型的格式失败。

import matplotlib.pyplot as plt
import numpy as np

theta = np.linspace(0,(np.pi)/2)
r = np.sin(theta)

fig = plt.figure()
ax = fig.add_subplot(211, polar=True)
c = ax.scatter(theta, r, c=r, s=5, cmap='hsv', alpha=0.85)

ax.set_thetamin(0)
ax.set_thetamax(90)

ax1=fig.add_subplot(212) #, sharey='ax')
fig, (c, d) = plt.subplots(ncols=2,sharey=True)
d=ax1.scatter(theta,r)
plt.show() 

1 个答案:

答案 0 :(得分:2)

airflow

enter image description here