📜  绘图之间的 python 子图空间 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:55.443000             🧑  作者: Mango

代码示例1
import matplotlib.pyplot as plt

fig, axes = plt.subplots(nrows=4, ncols=4)
fig.tight_layout(rect=[0, 0.03, 1, 0.95]) # Or equivalently, "plt.tight_layout()"

plt.show()