R に少し問題があり、データのベクトルに日付を追加しています。私は間違った方法でオブジェクトをいじっていると思いますか?
データ: y (数値[9])
y <-data.frame
y
temp cons wind ror solar nuclear chp net thermal
0.5612 0.5065 0.1609 0.2989 0.7452 0.9621 0.2810 0.6998 0.4519
今日の日付を含む列を最初に追加したいので、次のようになります。
date temp cons wind ror solar nuclear chp net thermal
28-06-2013 0.5612 0.5065 0.1609 0.2989 0.7452 0.9621 0.2810 0.6998 0.4519
明日の日付を取得するために Sys.Date()+1 を使用していますが、データと cbind すると、次のような望ましくない結果が得られます。
tomorrow<-Sys.Date()+1
cbind(tomorrow, y)
vector y
temp 15884 0.5612
cons 15884 0.5065
wind 15884 0.1609
ror 15884 0.2989
solar 15884 0.7452
nuclear 15884 0.9621
chp 15884 0.2810
net 15884 0.6998
thermal 15884 0.4519
日付をこの数値形式で表示したくないのですが、データが突然行列変数になる理由がよくわかりません。