Python,在plt.subplots(2,2)中绘制三个图表?

时间:2018-06-22 17:44:41

标签: python matplotlib

使用

   fig, ax = plt.subplots(2,2)

我创建了一个具有四个子图的图形

enter image description here

如果我只想在图中绘制三个图,该怎么办? 谢谢!

1 个答案:

答案 0 :(得分:2)

您将删除最后一个

fig, ax = plt.subplots(2,2)
ax[1,1].remove()