import numpy as np
import matplotlib.pyplot as plt

box = dict(facecolor=’yellow’, pad=5, alpha=0.2)

fig = plt.figure()
fig.subplots_adjust(left=0.2, wspace=0.6)

Fixing random state for reproducibility

np.random.seed(19680801)

ax1 = fig.add_subplot(221)
ax1.plot(2000*np.random.rand(10))
ax1.set_title(‘ylabels not aligned’)
ax1.set_ylabel(‘misaligned 1’, bbox=box)
ax1.set_ylim(0, 2000)
ax3 = fig.add_subplot(223)
ax3.set_ylabel(‘misaligned 2’,bbox=box)
ax3.plot(np.random.rand(10))

labelx = -0.3 # axes coords

ax2 = fig.add_subplot(222)
ax2.set_title(‘ylabels aligned’)
ax2.plot(2000*np.random.rand(10))
ax2.set_ylabel(‘aligned 1’, bbox=box)
ax2.yaxis.set_label_coords(labelx, 0.5)
ax2.set_ylim(0, 2000)

ax4 = fig.add_subplot(224)
ax4.plot(np.random.rand(10))
ax4.set_ylabel(‘aligned 2’, bbox=box)
ax4.yaxis.set_label_coords(labelx, 0.5)

plt.show()

matplotlib之aligin_ylables

相关文章:

  • 2021-08-29
  • 2022-01-23
  • 2021-09-08
  • 2022-01-02
  • 2021-04-14
  • 2021-12-30
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-12-04
  • 2021-04-05
  • 2022-01-21
  • 2022-12-23
  • 2021-07-17
  • 2021-11-01
  • 2021-09-10
相关资源
相似解决方案