极坐标图旁边的垂直轴

Tian

谁能指导我如何使用 matplotlib 在极坐标图旁边放置一个垂直轴?

引用http://www.originlab.com/doc/Origin-Help/Polar-Graph 中的示例,说明所需的结果。

如图所示,左侧是我想在 matplotlib 中重现的极坐标图中所需的垂直条: 在此处输入图片说明

编辑:这是我想要添加垂直轴的代码示例。

import matplotlib.pyplot as plt
import numpy as np

def sin_func(array):
    final = np.array([])
    for value in array:
        final = np.append(final, abs(np.sin(value)))
    return final

x = np.arange(0, 4*np.pi, 0.1)
y = sin_func(x)

fig = plt.figure()
ax = fig.add_subplot(111, projection='polar')

plt.plot(x, y)
# Changing axis to pi scale
ax.set_ylim([0, 1.2])
x_tick = np.arange(0, 2, 0.25)
x_label = [r"$" + format(r, '.2g') + r"\pi$" for r in x_tick]
ax.set_xticks(x_tick*np.pi)
ax.set_xticklabels(x_label, fontsize=10)
ax.set_rlabel_position(110)

plt.show()

在此处输入图片说明

宁静

使用add_axes方法在您想要的位置添加附加轴,然后根据需要设置刻度位置和标签:

import matplotlib.pyplot as plt
import numpy as np
from matplotlib.ticker import AutoMinorLocator

def sin_func(array):
    final = np.array([])
    for value in array:
        final = np.append(final, abs(np.sin(value)))
    return final

x = np.arange(0, 4*np.pi, 0.1)
y = sin_func(x)

fig = plt.figure()
ax = fig.add_subplot(111, projection='polar')

plt.plot(x, y)

# Changing axis to pi scale
ax.set_ylim([0, 1.2])
x_tick = np.arange(0, 2, 0.25)
x_label = [r"$" + format(r, '.2g') + r"\pi$" for r in x_tick]
ax.set_xticks(x_tick*np.pi)
ax.set_xticklabels(x_label, fontsize=10)
ax.set_rlabel_position(110)

# Add Cartesian axes
ax2 = fig.add_axes((.1,.1,.0,.8))
ax2.xaxis.set_visible(False) # hide x axis
ax2.set_yticks(np.linspace(0,1,7)) # set new tick positions
ax2.set_yticklabels(['60 %','40 %', '20 %', '0 %', '20 %', '40 %', '60 %'])
ax2.yaxis.set_minor_locator(AutoMinorLocator(2)) # set minor tick for every second tick

plt.show()

在此处输入图片说明

本文收集自互联网,转载请注明来源。

如有侵权,请联系[email protected] 删除。

编辑于
0

我来说两句

0条评论
登录后参与评论

相关文章