双轴缺失标签(matplotlib)

时间:2014-05-16 18:32:59

标签: python matplotlib

我正在研究一本关于matplotlib的电子书,我对一个关于双轴的例子有疑问。 代码是这样的:

import matplotlib.pyplot as plt
import numpy as np

x = np.arange(0., np.e, 0.01)
y1 = np.exp(-x)
y2 = np.log(x)

fig = plt.figure()
ax1 = fig.add_subplot(111)
ax1.plot(x, y1)
ax1.set_ylabel('Y values for exp(-x)')

ax2 = ax1.twinx() # this is the important function

ax2.plot(x, y2, 'r')
ax2.set_xlim([0, np.e])
ax2.set_ylabel('Y values for ln(x)')
ax2.set_xlabel('Same X for both exp(-x) and ln(x)')

plt.show()

结果就是这样,x标签似乎丢失了:

matplolib twin axes missing label

我在Pycharm中运行代码。 缺少标签是否有原因?

由于

1 个答案:

答案 0 :(得分:2)

我不知道为什么,但是当我把它放在ax1中时它出现了。

ax1.set_xlabel('Same X for both exp(-x) and ln(x)')