matplotlib设置画布长宽
时间: 2023-09-03 08:10:20 浏览: 203
Matplotlib画图
在 matplotlib 中,可以使用 `figure` 函数来设置画布的长宽。`figure` 函数接受一个 `figsize` 参数,用于指定画布的尺寸。
以下是两种设置画布长宽的方式:
1. 使用元组:可以使用一个元组 `(width, height)` 来指定画布的尺寸,单位是英寸。
```python
import matplotlib.pyplot as plt
plt.figure(figsize=(6, 4)) # 设置画布尺寸为 6x4 英寸
plt.plot([1, 2, 3, 4], [1, 4, 9, 16])
plt.show()
```
2. 使用宽度和高度参数:也可以直接使用 `width` 和 `height` 参数来指定画布的宽度和高度,单位是英寸。
```python
import matplotlib.pyplot as plt
plt.figure(figsize=(6, 4)) # 设置画布宽度为 6 英寸,高度为 4 英寸
plt.plot([1, 2, 3, 4], [1, 4, 9, 16])
plt.show()
```
通过这些方式,你可以根据需要来设置画布的长宽。注意,设置画布尺寸需要在绘制图形之前调用 `figure` 函数。
阅读全文