在图中设置子图的高度

时间:2017-09-13 05:58:55

标签: python matplotlib subplot

由于一些限制,我被要求使用matplotlib版本0.99绘制图表(是的,我知道它已经很老但我不能质疑这个决定......)

我使用子图在一个图中绘制2个图表

import matplotlib as plot

full_chart = plot.figure(figsize = (80,100), dpi=100)
first_chart = plot.subplot(211)
second_chart = plot.subplot(212)

但是,系统会自动将2个图表的比例设置为50%。

问题是: 我可以更改2个子图的高度,以便我可以调整每个子图的显示比例吗?

谢谢!

0 个答案:

没有答案