gpt4 book ai didi

python - 在 matplotlib 中,有没有办法在条/线/补丁下方设置网格线,同时保留上方的刻度标签?

转载 作者:太空宇宙 更新时间:2023-11-04 05:52:25 24 4
gpt4 key购买 nike

Matplotlib: draw grid lines behind other graph elements相关,但对我没有任何帮助。

我有以下情节,我想在红线下方隐藏网格线,同时将标签保留在红线上方:

import numpy as np
import matplotlib.pyplot as plt

#plot
r = np.arange(0, 3.0, 0.01)
theta = 2 * np.pi * r
ax = plt.subplot(111, polar=True)
ax.plot(theta, r, color='r', linewidth=20)
ax.set_rmax(2.0)
ax.grid(True, lw=2)
#set labels
label_pos = np.linspace(0.0, 2 * np.pi, 6, endpoint=False)
ax.set_xticks(label_pos)
label_cols = ['Label ' + str(num) for num in np.arange(6)]
ax.set_xticklabels(label_cols, size=24)

enter image description here

我可以使用 ax.set_axisbelow(True) 将红线置于顶部。

enter image description here

但我无法找到一种方法来将红线保持在网格线的顶部,同时将标签保留在红线的顶部。将 zorder=-1 添加到 plot 命令,即使我添加 ax.set_axisbelow(True) 也会将红线放在底部。 ax.set_zorder(-1)) 到目前为止也没有工作。

如何获取底部的网格线(最低 zorder),然后是红线,然后是红线顶部的标签?

最佳答案

您始终可以手动绘制网格:

import numpy as np
import matplotlib.pyplot as plt

#plot
r = np.arange(0, 3.0, 0.01)
theta = 2 * np.pi * r
rmax = 2.0
n_th = 6
th_pos = np.linspace(0.0, 2 * np.pi, n_th, endpoint=False)
n_r = 5
r_pos = np.linspace(0, rmax, n_r)


ax = plt.subplot(111, polar=True)

## Plot the grid
for pos in th_pos:
ax.plot([th_pos]*2, [0, rmax], 'k:', lw=2)
for pos in r_pos[1:-1]:
x = np.linspace(0, 2*np.pi, 50)
y = np.zeros(50)+pos
ax.plot(x, y, 'k:', lw=2)

## Plot your data
ax.plot(theta, r, color='r', linewidth=20)
ax.set_rmax(rmax)
ax.grid(False)

#set ticks and labels
ax.set_xticks(th_pos)
label_cols = ['Label ' + str(num) for num in np.arange(n_th)]
ax.set_xticklabels(label_cols, size=24)
ax.set_yticks(r_pos[1:])


plt.show()

enter image description here

关于python - 在 matplotlib 中,有没有办法在条/线/补丁下方设置网格线,同时保留上方的刻度标签?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29522447/

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