我需要使用一些股票数据制作烛台图表(类似于此)。为此,我想使用函数matplotlib.finance.candlestick()。对于这个函数,我需要提供引号和“一个Axes实例来绘制”。我创建了一些示例引号,如下所示:
quotes = [(1, 5, 6, 7, 4), (2, 6, 9, 9, 6), (3, 9, 8, 10, 8), (4, 8, 8, 9, 8), (5, 8, 11, 13, 7)]
我现在还需要一个Axes实例,我有点迷失了。我在使用matplotlib.pyplot之前创建了图。我想我现在需要对matplotlib.axes做一些事情,但我不确定到底是什么。
有人可以帮我一点吗?欢迎所有提示!
答案 0 :(得分:104)
使用gca
(“获取当前轴”)辅助函数:
ax = plt.gca()
示例:
import matplotlib.pyplot as plt
import matplotlib.finance
quotes = [(1, 5, 6, 7, 4), (2, 6, 9, 9, 6), (3, 9, 8, 10, 8), (4, 8, 8, 9, 8), (5, 8, 11, 13, 7)]
ax = plt.gca()
h = matplotlib.finance.candlestick(ax, quotes)
plt.show()
答案 1 :(得分:10)
你可以
fig, ax = plt.subplots() #create figure and axes
candlestick(ax, quotes, ...)
或
candlestick(plt.gca(), quotes) #get the axis when calling the function
第一个为您提供更大的灵活性。如果烛台是你想要绘制的唯一东西,那么第二个就容易多了