出于某种原因,我在我的情节中添加了第二个y轴
fig.plt.figure()
ax = plt.Axes(fig)
fig.add_axes(ax)
ax2 = ax.twinx()
fig.add_axes(ax2)
xticklabels不再旋转!?
fig.autofmt_xdate(rotation = num)
有谁知道为什么会这样?
我可以评论最后两行:
#ax2 = ax.twinx()
#fig.add_axes(ax2)
它将旋转xticklabels。
答案 0 :(得分:6)
在定义fig.autofmt_xdate(rotation = num)
的语句之后放置ax
,然后 之前调用ax.twinx()
并且:
import matplotlib.pyplot as plt
import matplotlib.dates as md
import datetime as dt
import numpy as np
np.random.seed(0)
t=md.drange(dt.datetime(2009,10,1),
dt.datetime(2010,1,15),
dt.timedelta(days=1))
n=len(t)
x1 = np.cumsum(np.random.random(n) - 0.5) * 40000
x2 = np.cumsum(np.random.random(n) - 0.5) * 0.002
fig = plt.figure()
# fig.autofmt_xdate(rotation=25) # does not work
ax1 = fig.add_subplot(1,1,1)
fig.autofmt_xdate(rotation=25) # works
ax2 = ax1.twinx()
# fig.autofmt_xdate(rotation=25) # does not work
ax1.plot_date(t, x1, 'r-')
ax2.plot_date(t, x2, 'g-')
plt.show()
产量