标签: python matplotlib plot subplot
我想在matplotlib中制作一个情节,其子图如下所示:
每个彩色方块代表不同的子图。我怎样才能让matplotlib制作两个子图,其中一个子图有几个子图?
答案 0 :(得分:3)
您可以使用subplot():
subplot()
pl.figure(figsize=(12, 6)) pl.subplot(1, 2, 1) for axeid in (3, 4, 7, 8): pl.subplot(2, 4, axeid)
输出是: