如何在极坐标图周围添加环绕轴?

问题描述 投票:7回答:1

我正在试图弄清楚如何将轴附加到我的极地投影上。新添加的轴应该像环一样环绕原始极轴。

为此我试图使用append_axes来自make_axes_locatablepolar matplotlib投影ax上创建的分隔符。

然而,没有选择“外部”或类似于append_axes参数的极性投影的任何东西。我没有围绕轴的环,而是在原始轴下方获得一个新轴(见图)。

有没有可以在现有极轴周围创建环形轴的替代方案?

注意,我不想将它们添加到同一个轴上,因为比例可能不同。

import numpy as np
import matplotlib.pyplot as plt
from mpl_toolkits.axes_grid1 import make_axes_locatable

plt.style.use("seaborn-white")
def synthesize(polar=False):
    fig = plt.figure()
    ax = fig.add_subplot(111, polar=polar)
    t = np.linspace(0,2*np.pi)
    r_sin = np.sin(t)
    r_cos = np.cos(t)
    for r in [r_sin, r_cos]:
        ax.scatter(t, r, c=r, s=t*100, edgecolor="white", cmap=plt.cm.magma_r)
        ax.scatter(t, -r, c=r, s=t*100, edgecolor="white", cmap=plt.cm.magma_r)
    ax.set_title("polar={}".format(polar),fontsize=15)
    ax.set_xticklabels([])
    return fig, ax, t

# Rectilinear
fig, ax, t = synthesize(polar=False)
# Here are the plot dimensions in response to the answer below
xlim = ax.get_xlim()
ylim = ax.get_ylim()
rlim = (ax.get_rmin(), ax.get_rmax())
print(xlim, ylim, rlim)
(0.0, 6.283185307179586) (0.0, 2.2437621373846617) (0.0, 2.2437621373846617)
# Encircling axis
divider = make_axes_locatable(ax)
ax_below = divider.append_axes("bottom", size="32.8%", pad=0.1)
ax_below.scatter(t, np.tan(t), c="black", edgecolor="white")

# Polar
fig, ax, t = synthesize(polar=True)
divider = make_axes_locatable(ax)
ax_below = divider.append_axes("bottom", size="32.8%", pad=0.1)
ax_below.scatter(t, np.tan(t), c="black", edgecolor="white")

enter image description here

python matplotlib plot projection polar-coordinates
1个回答
2
投票

你可以通过像这样运行qazxsw poi和qazxsw poi来做一些事情:

set_rmax
© www.soinside.com 2019 - 2024. All rights reserved.