Questions tagged «axes»

7
子图的pyplot轴标签
我有以下情节: import matplotlib.pyplot as plt fig2 = plt.figure() ax3 = fig2.add_subplot(2,1,1) ax4 = fig2.add_subplot(2,1,2) ax4.loglog(x1, y1) ax3.loglog(x2, y2) ax3.set_ylabel('hello') 我希望不仅可以为两个子图中的每个图创建轴标签和标题,而且还可以为跨两个子图的通用标签创建轴标签和标题。例如,由于两个图具有相同的轴,所以我只需要一组x和y轴标签。我确实希望每个子图都有不同的标题。 我尝试了几件事,但都没有成功



4
如何在matplotlib中制作空白子图?
我在matplotlib中制作了一组子图(例如3 x 2),但我的数据集少于6个。如何将其余子图留空? 安排如下所示: +----+----+ | 0,0| 0,1| +----+----+ | 1,0| 1,1| +----+----+ | 2,0| 2,1| +----+----+ 这可能会持续几页,但是在最后一页上,例如,有5个数据集,而2,1框将为空。但是,我已声明该数字为: cfig,ax = plt.subplots(3,2) 因此,在子图2,1的空间中,存在一组带有刻度和标签的默认轴。如何以编程方式使该空间空白且没有轴?

2
如何获得要绘制的matplotlib Axes实例?
我需要使用一些库存数据制作烛台图(类似这样)。为此,我想使用功能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做些事情,但是我不确定到底是什么。 有人可以帮我一下吗?欢迎所有提示!
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.