matplotlib / pandas:在时间序列图中沿着绘制线放置线标签

时间:2013-03-04 20:29:17

标签: python pandas matplotlib

我正在绘制比较多个节点的系统特征的时间序列数据。我想明确地沿着它的线标记来自特定节点的线。到目前为止,我已经成功地为特定节点添加了单独的线条样式,从而在图例框中为其提供了独特的线条和独特的样式标记。

我正试图找到一种方法来沿着线放置独特的标签,可能是沿着线弯曲的文本。有什么方法可以达到这个目的吗?

1 个答案:

答案 0 :(得分:5)

沿着这条线弯曲的文字对于matplotlib来说并不容易,但是annotate可以让你轻松地用文字和箭头标记这条线。

E.g。

import matplotlib.pyplot as plt
import numpy as np

# Generate some data
x = np.linspace(0, 20, 200)
y = np.cos(x) + 0.5 * np.sin(3 * x)

fig, ax = plt.subplots()
ax.plot(x, y)

ax.annotate(r'$y = cos(x) + \frac{sin(3x)}{2}$', xy=(x[70], y[70]), 
            xytext=(20, 10), textcoords='offset points', va='center',
            arrowprops=dict(arrowstyle='->'))
plt.show()

enter image description here