python绘制随机折线图
时间: 2023-07-04 14:17:09 浏览: 173
Python折线图绘制
好的,以下是Python绘制随机折线图的示例代码:
```python
import random
import matplotlib.pyplot as plt
# 生成随机数据
x = [i for i in range(50)]
y = [random.randint(1, 100) for _ in range(50)]
# 绘制折线图
plt.plot(x, y)
# 设置图表标题和轴标签
plt.title('Random Line Plot')
plt.xlabel('X')
plt.ylabel('Y')
# 显示图表
plt.show()
```
在这个示例中,我们使用random模块生成了50个1到100之间的随机y坐标,并以x坐标值为0到49的整数序列作为横坐标。然后使用matplotlib库的plot函数绘制了折线图。最后,我们设置了图表标题和轴标签,并使用show函数显示图表。你可以根据需要修改代码以生成不同的随机折线图。
阅读全文