我对 Hadley 的“rbind.fill”函数的行为感到困惑。我有一个数据框列表,我想做一个简单的 rbind 操作,但是 rbind.fill 函数给了我无法解释的结果。请注意,“rbind”函数确实给了我期望的输出。这是最小的示例:
library(reshape)
data1 <- structure(list(DATE = structure(c(1277859600, 1277856000), class = c("POSIXct",
"POSIXt"), tzone = "GMT"), BACK = c(0, -1)), .Names = c("DATE",
"BACK"), row.names = 1:2, class = "data.frame")
data2 <- structure(list(DATE = structure(c(1277856000, 1277852400), class = c("POSIXct",
"POSIXt"), tzone = "GMT"), BACK = c(0, -1)), .Names = c("DATE",
"BACK"), row.names = 1:2, class = "data.frame")
bind1 <- rbind.fill(list(data1, data2))
bind2 <- rbind(data1, data2)
data1
data2
bind1
bind2
DATE BACK
1 2010-06-30 01:00:00 0
2 2010-06-30 00:00:00 -1
DATE BACK
1 2010-06-30 00:00:00 0
2 2010-06-29 23:00:00 -1
DATE BACK
1 2010-06-29 18:00:00 0
2 2010-06-29 17:00:00 -1
3 2010-06-29 17:00:00 0
4 2010-06-29 16:00:00 -1
DATE BACK
1 2010-06-30 01:00:00 0
2 2010-06-30 00:00:00 -1
3 2010-06-30 00:00:00 0
4 2010-06-29 23:00:00 -1
如您所见,bind1
其中包含的rbind.fill
输出在DATE
列中创建了甚至不在原始数据集中的新时间。这是预期的行为吗?我知道我可以简单地
bind <- do.call(rbind, list(data1, data2))
用来绑定我拥有的 5000 多个数据帧,但是任何人都可以谈论上述行为吗?
谢谢你。
编辑:
正如@DWin 在下面指出的那样,这不是 rbind.fill 函数本身的问题,而是输出中的时间是在太平洋时间打印的,但是是 GMT 格式的。
SessionInfo()
R version 2.12.1 (2010-12-16)
Platform: x86_64-pc-mingw32/x64 (64-bit)
locale:
[1] LC_COLLATE=English_United States.1252 LC_CTYPE=English_United States.1252
[3] LC_MONETARY=English_United States.1252 LC_NUMERIC=C
[5] LC_TIME=English_United States.1252
attached base packages:
[1] tcltk grid stats graphics grDevices utils datasets methods
[9] base
other attached packages:
[1] tcltk2_1.1-5 reshape_0.8.4 plyr_1.4 proto_0.3-9.1
loaded via a namespace (and not attached):
[1] ggplot2_0.8.9 tools_2.12.1