python 绘制多折现图 横轴为样本标签
时间: 2024-02-03 13:15:22 浏览: 72
python绘制多个曲线的折线图
要绘制多折现图,可以使用 Matplotlib 库来实现。
这里提供一个简单的示例代码,可以将样本标签放在横轴上,纵轴代表数据值,每条线条代表一个数据系列:
```python
import matplotlib.pyplot as plt
# 数据
data = {
'Series 1': [1, 3, 2, 4, 5],
'Series 2': [2, 2, 1, 3, 4],
'Series 3': [3, 1, 4, 2, 5]
}
labels = ['Sample 1', 'Sample 2', 'Sample 3', 'Sample 4', 'Sample 5']
# 绘制图形
plt.figure(figsize=(8, 6))
for name, series in data.items():
plt.plot(labels, series, label=name)
# 添加图例和标题
plt.legend()
plt.title('Multiple Line Chart')
# 显示图形
plt.show()
```
运行代码后,会得到一个多折现图,其中横轴为样本标签,纵轴为数据值,每条线条代表一个数据系列。你可以根据自己的数据和需求进行修改和调整。
阅读全文