阅读量:3
要使用Matplotlib绘制折线图并添加数据标点,可以按照以下步骤进行:
- 导入Matplotlib库
import matplotlib.pyplot as plt
- 创建数据
x = [1, 2, 3, 4, 5] y = [2, 3, 5, 7, 6]
- 绘制折线图
plt.plot(x, y, marker='o') # 使用marker参数添加数据标点
- 添加数据标点
for i, j in zip(x, y): plt.text(i, j, f'({i},{j})', ha='center', va='bottom') # 添加数据标点并设置位置
- 设置图表标题和标签
plt.title('Line Chart with Data Points') plt.xlabel('X-axis') plt.ylabel('Y-axis')
- 显示图表
plt.show()
这样就可以使用Matplotlib绘制折线图并添加数据标点。您可以根据实际需求对图表进行进一步的美化和调整。