如何在matplotlib pyplot中的y轴上向间隔组添加标签?

时间:2019-05-01 14:01:55

标签: python matplotlib

参考此stackoverflow线程Specifying values on x-axis,生成了下图。

enter image description here

我想以这种方式在上图中添加间隔名称。 enter image description here

如何在y轴的每个间隔组中添加这样的间隔组名称?

1 个答案:

答案 0 :(得分:2)

这是通过创建双轴并修改其刻度标签和位置来实现的一种方法。这里的技巧是找到现有刻度之间的中间位置loc_new,以放置字符串Interval i。您只需要花一点时间就能获得准确您想要的身材。

import matplotlib.pyplot as plt
import numpy as np

fig, ax = plt.subplots()

x = np.array([0,1,2,3])
y = np.array([0.650, 0.660, 0.675, 0.685])
my_xticks = ['a', 'b', 'c', 'd']
plt.xticks(x, my_xticks)
plt.yticks(np.arange(y.min(), y.max(), 0.005))
plt.plot(x, y)
plt.grid(axis='y', linestyle='-')

ax2 = ax.twinx()
ax2.set_ylim(ax.get_ylim())

loc = ax2.get_yticks()
loc_new = ((loc[1:]+loc[:-1])/2)[1:-1]
ax2.set_yticks(loc_new)

labels = ['Interval %s' %(i+1) for i in range(len(loc_new))]
ax2.set_yticklabels(labels)
ax2.tick_params(right=False) # This hides the ticks on the right hand y-axis
plt.show()

enter image description here