我正在尝试将数据框写入 excel 文件。示例数据框如下所示。由于时间戳属于 class factor
,我POSIXct
使用 lubridate 包将其转换为格式。
library(lubridate)
library(xlsx)
df=structure(list(ts = structure(c(5L, 8L, 9L, 1L, 6L, 7L, 4L, 2L, 3L),
.Label = c("01.09.2016 10:56:56", "01.09.2016 11:04:37",
"01.09.2016 12:03:59", "02.09.2016 08:47:01", "30.08.2016 08:27:28",
"30.08.2016 16:08:56", "31.08.2016 07:38:43", "31.08.2016 10:26:53",
"31.08.2016 10:37:40"), class = "factor")), .Names = "ts",
row.names = c(NA,-9L), class = "data.frame")
df$ts = as.POSIXct(strptime(df$ts, "%d.%m.%Y %H:%M:%S"))
write.xlsx(df, "output.xlsx", sheetName="output")
当我尝试使用命令将数据帧写入 excel 文件时write.xlsx
,我得到一个时间戳与原始时间戳不同的输出。
可以观察到时间偏移了两个小时。我住在属于时区 UTC+02:00 的地区。这可能是影响变化的因素吗?如果是这样,有没有办法防止excel根据UTC偏移量更改时间信息?