Matplotlib花式破碎条

时间:2019-05-14 16:46:51

标签: python matplotlib

我想跟着看上破条吧。

enter image description here

这是我的代码(改编自here),可以获取top条。我正在努力达到最低要求。有什么想法吗?

import matplotlib.pylab as plt
x1 = range(0, 100)
x2 = range(1000, 3000)

fig, (ax, ax2) = plt.subplots(1, 2, sharey=True)
ax.barh(0, x1)
ax2.barh(0, x2)
ax.set_xlim(0, 100)
ax2.set_xlim(1000, 4000)
ax.spines['right'].set_visible(False)
ax2.spines['left'].set_visible(False)
ax.yaxis.tick_left()
ax.tick_params(labeltop='off')
ax2.yaxis.tick_right()
plt.subplots_adjust(wspace=0.15)
plt.ylim(-5,5)
plt.show()

0 个答案:

没有答案