我想有一组子图分为三行,第一行有一个子图,第二行有两个子图,第三行有三个子图。我做了以下事情:
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))
如何删除三个空图?