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.
Quantmod を使用してデータセットをダウンロードできます
library(quantmod) getSymbols("SPY", from="2013-01-01", to=Sys.Date()) chartSeries(SPY)
最後のデータを常に月曜日に収集したいと考えています (つまり、木曜日にデータを収集すると、火曜日、水曜日、および木曜日のデータ ポイントが除外されます)。これを行う方法はありますか。
ご協力ありがとうございました。
replace your to=Sys.Date() with to=(Sys.Date()-c(6:0))[format((Sys.Date()-c(6:0)),"%w")=="1"]
to=Sys.Date()
to=(Sys.Date()-c(6:0))[format((Sys.Date()-c(6:0)),"%w")=="1"]