📅  最后修改于: 2023-12-03 15:07:44.260000             🧑  作者: Mango
在使用 matplotlib 绘制图形时,我们经常需要调整图形的大小以适应自己的需求。本篇文章将介绍如何在 matplotlib 中增加图形大小。
figsize
使用 figsize
可以调整图形的大小,该参数用于指定图像的宽度和高度。下面我们通过代码来演示:
import matplotlib.pyplot as plt
x = [1, 2, 3, 4, 5]
y = [2, 4, 3, 1, 6]
fig = plt.figure(figsize=(8, 6))
plt.plot(x, y)
plt.show()
在上面的代码中我们通过 figsize
参数指定了图形的宽度和高度为 8 和 6,单位为英寸。这样我们就可以得到一个宽度为 8 英寸,高度为 6 英寸的图形。
使用 subplots_adjust
可以调整图像边缘和子图之间的空白。下面我们通过代码来演示:
import matplotlib.pyplot as plt
x = [1, 2, 3, 4, 5]
y = [2, 4, 3, 1, 6]
fig = plt.figure()
plt.plot(x, y)
fig.subplots_adjust(top=0.9, bottom=0.1, left=0.1, right=0.9)
plt.show()
在上面的代码中我们通过 subplots_adjust
参数指定了图像边缘和子图之间的空白。该函数有四个参数,分别是 top
、bottom
、left
和 right
,用于指定图像的边缘距离图像的上、下、左、右的距离。这样我们就可以调整图像的大小。
以上就是在 matplotlib 中增加图形大小的方法介绍。