xts オブジェクトの特定の日付を設定したいのですが、日付が 1 日ずれてしまいます。
aapl <- as.xts(read.zoo(textConnection("
2007-04-26, 98.84
2007-04-27, 99.92
2007-04-30, 99.80
2007-05-01, 99.47
2007-05-02, 100.39"), sep=","))
idx_aapl <- index(aapl)
idx_aapl
xts:::index.xts(aapl) # makes no difference
idx_aapl <- idx_aapl + 1
idx_aapl
表示されている特定の日付を指定するにはどうすればよいですか? posixct について何か読んだことがありますが、それをインデックスに割り当てる方法がわかりません。