我在 Ubuntu 10.0.4 上使用 matplotlib 1.2.x 和 Python 2.6.5。我正在尝试创建一个由顶部图和底部图组成的单一图。
X 轴是时间序列的日期。顶部图包含数据的烛台图,底部图应包含条形图 - 具有自己的 Y 轴(也在左侧 - 与顶部图相同)。这两个图不应重叠。
这是我到目前为止所做的一个片段。
datafile = r'/var/tmp/trz12.csv'
r = mlab.csv2rec(datafile, delimiter=',', names=('dt', 'op', 'hi', 'lo', 'cl', 'vol', 'oi'))
mask = (r["dt"] >= datetime.date(startdate)) & (r["dt"] <= datetime.date(enddate))
selected = r[mask]
plotdata = zip(date2num(selected['dt']), selected['op'], selected['cl'], selected['hi'], selected['lo'], selected['vol'], selected['oi'])
# Setup charting
mondays = WeekdayLocator(MONDAY) # major ticks on the mondays
alldays = DayLocator() # minor ticks on the days
weekFormatter = DateFormatter('%b %d') # Eg, Jan 12
dayFormatter = DateFormatter('%d') # Eg, 12
monthFormatter = DateFormatter('%b %y')
# every Nth month
months = MonthLocator(range(1,13), bymonthday=1, interval=1)
fig = pylab.figure()
fig.subplots_adjust(bottom=0.1)
ax = fig.add_subplot(111)
ax.xaxis.set_major_locator(months)#mondays
ax.xaxis.set_major_formatter(monthFormatter) #weekFormatter
ax.format_xdata = mdates.DateFormatter('%Y-%m-%d')
ax.format_ydata = price
ax.grid(True)
candlestick(ax, plotdata, width=0.5, colorup='g', colordown='r', alpha=0.85)
ax.xaxis_date()
ax.autoscale_view()
pylab.setp( pylab.gca().get_xticklabels(), rotation=45, horizontalalignment='right')
# Add volume data
# Note: the code below OVERWRITES the bottom part of the first plot
# it should be plotted UNDERNEATH the first plot - but somehow, that's not happening
fig.subplots_adjust(hspace=0.15)
ay = fig.add_subplot(212)
volumes = [ x[-2] for x in plotdata]
ay.bar(range(len(plotdata)), volumes, 0.05)
pylab.show()
我已经设法使用上面的代码显示了这两个图,但是,底部图有两个问题:
它完全覆盖了第一个(顶部)图的底部 - 几乎就像第二个图在与第一个图相同的“画布”上绘制 - 我看不出在哪里/为什么会发生这种情况。
它用自己的索引覆盖现有的 X 轴,X 轴值(日期)应该在两个图之间共享。
我在代码中做错了什么?有人能发现是什么导致第二个(底部)图覆盖了第一个(顶部)图 - 我该如何解决这个问题?
这是上面代码创建的绘图的屏幕截图:
[[编辑]]
按照 hwlau 的建议修改代码后,这是新的情节。它比第一个更好,因为这两个地块是分开的,但是仍然存在以下问题:
X 轴应由两个图共享(即 X 轴应仅显示为第二个 [底部] 图)
第二个图的 Y 值似乎格式不正确
我认为这些问题应该很容易解决,但是我的 matplotlib fu 目前不是很好,因为我最近才开始使用 matplotlib 编程。任何帮助都感激不尽。