python如何输出两条曲线数据绘折线图,数据用实心点来表示,调整曲线的宽度为0.3,调整点的大小与线宽相适应
时间: 2024-05-08 22:16:14 浏览: 62
假设有两组数据,分别为x1、y1和x2、y2,可以使用Matplotlib库中的plot函数绘制折线图,同时通过参数调整曲线宽度和实心点大小,代码示例如下:
``` python
import matplotlib.pyplot as plt
x1 = [1, 2, 3, 4, 5]
y1 = [3, 5, 2, 7, 4]
x2 = [1, 2, 3, 4, 5]
y2 = [2, 4, 1, 6, 3]
plt.plot(x1, y1, 'o-', linewidth=0.3, markersize=3)
plt.plot(x2, y2, 'o-', linewidth=0.3, markersize=3)
plt.show()
```
其中,'o-'表示线条由实心点和线段组成,linewidth为线宽,markersize为点的大小。运行代码后,可以得到绘制的折线图。
阅读全文