如果我使用cbind
合并两个具有相同matrices
的两个data.frames
或colnames
,则这些colnames
在新的{{1}中保持不变}或matrix
:
data.frame
但是,如果我对df <- data.frame(test = c(1,2))
df.merge <- cbind(df,df)
df.merge
test test
1 1 1
2 2 2
对象执行相同操作,则会向xts
中添加一个数值:
colnames
是否有一种通过合并df.xts <- xts(df, order.by = as.POSIXct(c("2019-02-18 13:00","2019-02-18 14:00"), tz = "UTC"))
df.xts.merge <- cbind(df.xts, df.xts)
df.xts.merge
test test.1
2019-02-18 13:00:00 1 1
2019-02-18 14:00:00 2 2
对象来防止重命名列的方法?