我在使用 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 来获取明天的日期,但是当我将它与我的数据绑定时,我得到了一些不需要的结果,例如:
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
我不希望以这种数字格式显示日期,而且我不太确定为什么数据突然变成矩阵变量。