4

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

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

在此处输入图像描述

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

4

2 回答 2

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,因此需要对轴进行归一化

在此处输入图像描述


编辑: OP 已修改代码以使其更加面向对象:

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()
于 2012-05-08T14:14:44.620 回答
4

这不是 你想要的http://matplotlib.sourceforge.net/api/pyplot_api.html?highlight=annotate#matplotlib.pyplot.annotate吗?

于 2012-05-08T15:10:04.640 回答