要使用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绘制折线图并添加数据标点。您可以根据实际需求对图表进行进一步的美化和调整。