我正在使用autofmt_xdate()来获得更好看的x轴(日期),如下所示:
fig, ax = plt.subplots(1,2, figsize=(12, 5))
ax[0].plot(my_df[['my_time']], my_df[['field_A']])
ax[0].set_xlable('time')
fig.autofmt_xdate()
这很好用。但是,如果我执行如下两行:
fig, ax = plt.subplots(2,2, figsize=(12, 5))
ax[0][0].plot(my_df[['my_time']], my_df[['field_A']])
ax[0][0].set_xlable('time')
fig.autofmt_xdate()
然后ax [0] [0] x轴的标签和刻度消失。知道我做错了什么吗?谢谢!
答案 0 :(得分:1)