Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
xts でサブセット化する場合、通常は 2 つの日付/時刻の間の範囲を設定します。
df["T08:00/T16:59"]
また
df["2012-12-12/2012-12-12"]
開始日を設定して、特別な期間を取得したい: たとえば 14 日間。2 番目の外部変数を計算して、その問題をどのように解決しますか。または、サブセットの範囲を設定することも可能ですか?
例:df["2012-12-12/14days.."]
df["2012-12-12/14days.."]
ありがとう!
これを試して
first(df["2012-12-12/"], "14 days")