plt 线条贴着坐标轴
时间: 2023-11-14 14:57:30 浏览: 158
Python利用matplotlib做图中图及次坐标轴的实例
你可以使用Matplotlib中的`plt.plot`函数来绘制线条。要让线条贴着坐标轴,可以使用`plt.xlim`和`plt.ylim`函数设置坐标轴的范围。
下面是一个示例代码:
```python
import matplotlib.pyplot as plt
# 创建x和y数据
x = [1, 2, 3, 4, 5]
y = [2, 4, 6, 8, 10]
# 绘制线条
plt.plot(x, y)
# 设置坐标轴范围
plt.xlim(min(x), max(x))
plt.ylim(min(y), max(y))
# 显示图形
plt.show()
```
这段代码会绘制一条通过点(1, 2), (2, 4), (3, 6), (4, 8), (5, 10)的直线,并且线条会贴着坐标轴。你可以根据自己的需求修改x和y的数据以及其他绘图参数。
阅读全文