【发布时间】:2019-03-18 11:27:56
【问题描述】:
从这个问题中获得了一些指导,在底部创建了我的条形图; Matplotlib - Finance volume overlay
但我似乎无法解决的问题是条形图的空白。正如您在代码中看到的那样,列表y3 有length=21,x、y1、y2 也是如此。空闲的日子是周末,但在我创建任何情节之前,这些日子已从列表中删除 x。即使在我将它们从x-axis 列表中删除之后,我也看不出它们是如何以及为什么会留下空白的。
编辑:我缩短了问题。
from datetime import datetime,timedelta
import matplotlib
import matplotlib.pyplot as plt
import matplotlib.dates as mdates
d = datetime.strptime('2019-02-01','%Y-%m-%d')
#create x-axis which consists of all days in february except weekdays, plus the first day in march
x = []
for i in range(0,29):
if((d + timedelta(days=i)).date().weekday() > 4):
continue
x.append((d + timedelta(days=i)).date())
y1 = [317.92, 319.1, 322.73, 324.22, 322.05, 321.06, 323.79, 325.29, 325.55, 327.9, 329.99, 330.92, 331.33, 332.75, 331.41, 333.22, 332.58, 333.64, 331.19, 329.83, 332.46]
y2 = [-0.377507469, -0.3411700881, 0.055641283900000005, 0.44570105590000003, 0.10930618490000005, -0.2948038151, 0.09190098490000004, 0.12858223490000004, 0.09559385990000004, 0.4806987649, 0.11333709890000004, 0.5247366639000001, 0.11605396190000006, -0.30122159309999996, -0.7405398680999999, -0.7053236033999999, -0.33368165239999986, -0.8210733183999999, -1.2753887724, -1.3106836659999999, -1.3450585547999998]
y3 = [27, 15, 12, 4, 5, 11, 4, 14, 18, 19, 13, 17, 28, 22, 4, 15, 26, 21, 21, 21, 9]
fig, ax1 = plt.subplots()
ax1.plot(x, y1, 'b')
ax1.tick_params('y', colors='b')
#create space at the bottom for the bar-plot
pad = 0.25
yl = ax1.get_ylim()
ax1.set_ylim(yl[0]-(yl[1]-yl[0])*pad,yl[1])
fig.suptitle('Some title', fontsize=16)
ax2 = ax1.twinx()
ax2.plot(x, y2,'r')
ax2.tick_params('y', colors='r')
#create space at the bottom for the bar-plot
pad = 0.25
yl = ax2.get_ylim()
ax2.set_ylim(yl[0]-(yl[1]-yl[0])*pad,yl[1])
#create barplot and make it small by adding a (in this case, this is not a modular solution) max-limit
ax3 = ax1.twinx()
ax3.set_ylim(0,250)
ax3.bar(x, y3, color='green', width=1, alpha=0.5)
ax3.set_xlim(min(x),max(x))
ax3.get_yaxis().set_ticks([])
ax1.set_ylabel('1st Value', color='b')
ax2.set_ylabel('2nd Value', color='r')
plt.gcf().autofmt_xdate()
plt.gca().xaxis.set_major_formatter(mdates.DateFormatter('%d-%B'))
plt.show()
【问题讨论】:
-
如果您有 3 个问题,我建议您问 3 个问题。对于第一个,为什么会有周末间隔:这与绘制
plt.plot([0,1,2,5,6,7], [...])时相同,根本没有[3,4,5] 的数据。在 matplotlib 文档中查看Skip dates where there is no data。 -
是的,对不起,我认为这会是一个更好的主意,因为 3 个问题只会导致 90% 的问题被复制(因为它们是小但相互关联的问题)。关于您发送的链接,我已经尝试使用其中的一部分,但无法让它与我的代码一起使用。无论如何感谢您的提示。
标签: python matplotlib