将matplotlib子图排列成子网格

时间:2014-01-14 20:53:36

标签: python matplotlib plot subplot

我想在matplotlib中制作一个情节,其子图如下所示:

Layout

每个彩色方块代表不同的子图。我怎样才能让matplotlib制作两个子图,其中一个子图有几个子图?

1 个答案:

答案 0 :(得分:3)

您可以使用subplot()

pl.figure(figsize=(12, 6))
pl.subplot(1, 2, 1)
for axeid in (3, 4, 7, 8):
    pl.subplot(2, 4, axeid)

输出是:

enter image description here