Matplotlib:如何获得子图的三角矩阵?

时间:2017-02-04 09:15:08

标签: python matplotlib subplot

我想有一组子图分为三行,第一行有一个子图,第二行有两个子图,第三行有三个子图。我做了以下事情:

fig, axes = plt.subplots(figsize=(10, 10), sharex=True, sharey=True, ncols=3, nrows=3)
x = np.linspace(0, 10, 100)
for i in range(3):
    for j in range(0, i+1):
        axes[i, j].plot(x, np.sin((i+j) *x))

因此我得到: enter image description here

如何删除三个空图?

1 个答案:

答案 0 :(得分:3)

这个怎么样?

fig, axes = plt.subplots(figsize=(10, 10), sharex=True, sharey=True, ncols=3, nrows=3)
x = np.linspace(0, 10, 100)
for i in range(3):
    for j in range(3):
        if i<j:
            axes[i, j].axis('off')
        else:
            axes[i, j].plot(x, np.sin((i+j) *x))

它似乎产生了你正在寻找的情节:

enter image description here