使用matplotlib来注释某些点

时间:2012-05-08 13:45:33

标签: python matplotlib

虽然我可以将代码拼凑在一起绘制XY图,但我想要一些额外的东西:

  • 从X轴延伸到指定距离的垂直线
  • 注释该点的文字,必须接近(见红色文字)
  • 图形为自包含图像:800长的序列应占据800像素的宽度(我希望它与特定图像对齐,因为它是强度图)

enter image description here

如何在mathplotlib中制作这样的图形?

2 个答案:

答案 0 :(得分:7)

你可以这样做:

import matplotlib.pyplot as plt

fig = plt.figure()
ax = fig.add_subplot(1, 1, 1)
data = (0, 2, 3, 5, 5, 5, 9, 7, 8, 6, 6)
ax.plot(data, 'r-', linewidth=4)

plt.axvline(x=5, ymin=0, ymax=4.0 / max(data), linewidth=4)
plt.text(5, 4, 'your text here')
plt.show()

请注意,yminymax值从0 to 1开始有点奇怪,因此需要对轴进行标准化

enter image description here


编辑: OP修改了代码以使其更加OO:

fig = plt.figure()
data = (0, 2, 3, 5, 5, 5, 9, 7, 8, 6, 6)

ax = fig.add_subplot(1, 1, 1)
ax.plot(data, 'r-', linewidth=4)
ax.axvline(x=5, ymin=0, ymax=4.0 / max(data), linewidth=4)
ax.text(5, 4, 'your text here')
fig.show()

答案 1 :(得分:4)