python的plt如何拉长坐标轴
时间: 2023-07-05 19:30:03 浏览: 261
Python利用matplotlib做图中图及次坐标轴的实例
要拉长 matplotlib 中的坐标轴,可以使用 `plt.subplots()` 函数中的 `figsize` 参数。该参数用于指定图形的尺寸,可以设置为一个元组 `(width, height)`,其中 `width` 和 `height` 分别表示图形的宽度和高度,单位为英寸(inch)。
以下是一个示例代码:
```python
import matplotlib.pyplot as plt
import numpy as np
# 生成数据
x = np.linspace(0, 10, 100)
y = np.sin(x)
# 创建画布和坐标轴
fig, ax = plt.subplots(figsize=(10, 5))
# 绘制曲线
ax.plot(x, y)
# 设置坐标轴标签
ax.set_xlabel('x')
ax.set_ylabel('y')
# 显示图形
plt.show()
```
在上面的代码中,通过将 `figsize` 参数设置为 `(10, 5)`,将图形的宽度设置为 10 英寸,高度设置为 5 英寸,从而拉长了坐标轴。你可以根据需要调整 `figsize` 参数的值。
阅读全文