3
使用熊貓我創建了一個時間序列的情節是這樣的:行添加到大熊貓繪製
import numpy as np
import pandas as pd
rng = pd.date_range('2016-01-01', periods=60, freq='D')
ts = pd.Series(np.random.randn(len(rng)), index=rng)
ax = ts.plot()
ax.axhline(y=ts.mean(), xmin=-1, xmax=1, color='r', linestyle='--', lw=2)
我想只使用數據的平均水平增加另一個水平線從二月開始。平均值只是ts.loc['2016-02']
,但是如何在該級別添加橫跨整個數字的水平線,但僅限於2月份的日期?