将 POSIXct 日期时间转换为日期时出现意外日期 - 时区问题?
Unexpected date when converting POSIXct date-time to Date - timezone issue?
当我尝试使用 as.Date
将 POSIXct
日期时间强制转换为 Date
时,似乎 return 错误的日期。
我怀疑这与时区有关。我在 as.Date
中尝试了 tz
参数,但它没有给出预期的日期。
# POSIXct returns day of month 24
data$Time[3]
# [1] "2020-03-24 00:02:00 IST"
class(data$Time[3])
# [1] "POSIXct" "POSIXt"
# coerce to Date, returns 23
as.Date(data$Time[3])
# [1] "2020-03-23"
# try the time zone argument, without luck
as.Date(data$Time[3], tz = "IST")
# [1] "2020-03-23"
# Warning message:
# In as.POSIXlt.POSIXct(x, tz = tz) : unknown timezone 'IST'
Sys.timezone()
# [1] "Asia/Calcutta"
知道这里可能出了什么问题吗?
线索在警告信息中。 as.Date()
不知道如何将 IST
解释为时区,因此默认为 UTC
。假设 IST
是 印度 标准时间(而不是 爱尔兰 标准时间)并且 IST 是 UTC+5:30,as.Date()
给出了预期的结果,即使它不符合您的目的。
提供一个时区表示为与 UTC 的偏移量的日期会得到所需的结果。
as.Date("2020-03-24 00:02:00 UTC+5:30")
[1] "2020-03-24"
使用最后注释中的设置,我们可以使用以下任何一个:
# same date as print(x) shows
as.Date(as.character(x))
## [1] "2020-03-24"
# use the time zone stored in x (or system time zone if that is "")
as.Date(x, tz = attr(x, "tzone"))
## [1] "2020-03-24"
# use system time zone
as.Date(x, tz = "")
## [1] "2020-03-24"
# use system time zone
as.Date(x, tz = Sys.timezone())
## [1] "2020-03-24"
# use indicated time zone
as.Date(x, tz = "Asia/Calcutta")
## [1] "2020-03-24"
备注
我们假设了这个设置。
Sys.setenv(TZ = "Asia/Calcutta")
x <- structure(1584988320, class = c("POSIXct", "POSIXt"), tzone = "")
R.version.string
## [1] "R version 4.0.2 Patched (2020-06-24 r78745)"
当我尝试使用 as.Date
将 POSIXct
日期时间强制转换为 Date
时,似乎 return 错误的日期。
我怀疑这与时区有关。我在 as.Date
中尝试了 tz
参数,但它没有给出预期的日期。
# POSIXct returns day of month 24
data$Time[3]
# [1] "2020-03-24 00:02:00 IST"
class(data$Time[3])
# [1] "POSIXct" "POSIXt"
# coerce to Date, returns 23
as.Date(data$Time[3])
# [1] "2020-03-23"
# try the time zone argument, without luck
as.Date(data$Time[3], tz = "IST")
# [1] "2020-03-23"
# Warning message:
# In as.POSIXlt.POSIXct(x, tz = tz) : unknown timezone 'IST'
Sys.timezone()
# [1] "Asia/Calcutta"
知道这里可能出了什么问题吗?
线索在警告信息中。 as.Date()
不知道如何将 IST
解释为时区,因此默认为 UTC
。假设 IST
是 印度 标准时间(而不是 爱尔兰 标准时间)并且 IST 是 UTC+5:30,as.Date()
给出了预期的结果,即使它不符合您的目的。
提供一个时区表示为与 UTC 的偏移量的日期会得到所需的结果。
as.Date("2020-03-24 00:02:00 UTC+5:30")
[1] "2020-03-24"
使用最后注释中的设置,我们可以使用以下任何一个:
# same date as print(x) shows
as.Date(as.character(x))
## [1] "2020-03-24"
# use the time zone stored in x (or system time zone if that is "")
as.Date(x, tz = attr(x, "tzone"))
## [1] "2020-03-24"
# use system time zone
as.Date(x, tz = "")
## [1] "2020-03-24"
# use system time zone
as.Date(x, tz = Sys.timezone())
## [1] "2020-03-24"
# use indicated time zone
as.Date(x, tz = "Asia/Calcutta")
## [1] "2020-03-24"
备注
我们假设了这个设置。
Sys.setenv(TZ = "Asia/Calcutta")
x <- structure(1584988320, class = c("POSIXct", "POSIXt"), tzone = "")
R.version.string
## [1] "R version 4.0.2 Patched (2020-06-24 r78745)"