matplotlib图太小了
时间: 2023-06-18 11:03:59 浏览: 86
MATLAB用的小尺寸图片
如果您觉得matplotlib的图太小,您可以通过以下方法调整它的大小:
1. 使用`figsize`参数调整图的大小,例如:
```
import matplotlib.pyplot as plt
fig, ax = plt.subplots(figsize=(8,6))
ax.plot(x, y)
```
这会创建一个大小为8x6英寸的图。
2. 使用`rcParams`全局参数设置默认图的大小,例如:
```
import matplotlib.pyplot as plt
plt.rcParams["figure.figsize"] = (8,6)
plt.plot(x, y)
```
这会将默认图的大小设置为8x6英寸。
3. 使用`tight_layout`调整子图之间的间距,例如:
```
import matplotlib.pyplot as plt
fig, ax = plt.subplots(2, 2, figsize=(8,6))
ax[0,0].plot(x, y)
ax[0,1].plot(x, y)
ax[1,0].plot(x, y)
ax[1,1].plot(x, y)
plt.tight_layout()
```
这会创建一个大小为8x6英寸的包含4个子图的图,并调整子图之间的间距,使它们更紧凑。
希望这可以帮助您调整matplotlib图的大小。
阅读全文