我已经完成了雷达绘图,看起来几乎是我想要的样子。但是,由于绘图上的值很多,我想修改ylabels / yticks的对齐方式。

在给定角度的一行中用正确的值创建ylabels / yticks时,我没有问题,但是我希望ylabels在相应的值上,而不是在同一行上。因此,对于每个角度,应在图上的相应值附近放置两个ylabels。在图片中,您可以看到值4.144.71正确放置在相应的值处。
我的想法在Python中根本可行吗?

那就是我使用的代码:

# number of variable
categories=list(data)[0:]
N = len(categories)

# Angles for plotting
angles = [n / float(N) * 2 * pi for n in range(N)]
angles += angles[:1]

# Initialise
f, ax = plt.subplots(1,1,figsize=(40,20))
ax = plt.subplot(111, polar=True)

# Draw one axe per variable
plt.xticks(angles[:-1], color='grey', size=16)

# the main problem in my code - placing yticks 'around' the plot
# to be near the corresponding values
for idx, an in enumerate(angles):
    ax.set_rlabel_position(an) # positioning labels at a given angle
    tick_values = [blue_values[idx],red_values[idx]] # to get the two labels values
    plt.yticks(tick_values, [x.rstrip('.0') for x in list(map(str, tick_values))], color="black", size=16)

plt.ylim(0,max(red_values))

# Add plots
# Plot data
ax.plot(angles, blue_values, linewidth=1, linestyle='solid')
# Fill area
ax.fill(angles, blue_values, 'b', alpha=0.5)

# Plot data
ax.plot(angles, red_values, linewidth=1, linestyle='solid')
# Fill area
ax.fill(angles, red_values, 'r', alpha=0.2)


这就是我实现的目标。如您所见,只有两个标签(当然是由于for-loop引起的)。
python - 雷达图matplotlib-yticks的位置-LMLPHP

最佳答案

仅在指定的坐标处绘制文本会更容易。

# number of variable
categories=list(data)[0:]
N = len(categories)

# Angles for plotting
angles = [n / float(N) * 2 * pi for n in range(N)]
angles += angles[:1]

# Initialise
f, ax = plt.subplots(1,1,figsize=(40,20))
ax = plt.subplot(111, polar=True)

# Draw one axe per variable
plt.xticks(angles[:-1], color='grey', size=16)

# the main problem in my code - placing yticks 'around' the plot
# to be near the corresponding values

for idx, an in enumerate(angles):
    plt.text(an, red_values[idx], str(red_values[idx]), color="black", size=16)
    plt.text(an, blue_values[idx], str(blue_values[idx]), color="black", size=16)

plt.yticks([])
# plt.yticks(blue_values + red_values, []) # if you want to keep the circles.

plt.ylim(0,max(red_values))

# Add plots
# Plot data
ax.plot(angles, blue_values, linewidth=1, linestyle='solid')
# Fill area
ax.fill(angles, blue_values, 'b', alpha=0.5)

# Plot data
ax.plot(angles, red_values, linewidth=1, linestyle='solid')
# Fill area
ax.fill(angles, red_values, 'r', alpha=0.2)


python - 雷达图matplotlib-yticks的位置-LMLPHP

关于python - 雷达图matplotlib-yticks的位置,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/51467170/

10-12 22:01