13

パンダ データ シリーズに沿ってマークを付けようとしています (株式市場のグラフで売買イベントを表示するため)

pyplot を使用して作成した単純な配列でこれを行うことができますが、パンダの時系列で任意のイベントを示す方法に関する参照が見つかりません。

おそらく、パンダにはこの機能が組み込まれていません。誰かがこのシリーズを取り、曲線に沿って任意のマークを追加する方法で助けを提供できますか...

import datetime
import matplotlib.pyplot as plt
import pandas
from pandas import Series, date_range
import numpy as np
import random



ts = Series(randn(1000), index=date_range('1/1/2000', periods=1000))
ts = ts.cumsum()

#--  the markers should be another pandas time series with true/false values
#--    We only want to show a mark where the value is True
tfValues = np.random.randint(2, size=len(ts)).astype('bool')
markers = Series(tfValues, index=date_range('1/1/2000', periods=1000))

fig, ax1 = plt.subplots()
ts.plot(ax=ax1)

ax1.plot(markers,'g^')   # This is where I get held up.
plt.show()
4

2 に答える 2

20

オプションを使用する

ts.plot(marker='o')

また

ts.plot(marker='.')
于 2015-03-11T07:03:11.947 に答える