Время округления до следующей миллисекунды
Рассмотрим дату:
options(digits.secs = 6)
library(lubridate)
this_special_date <- with_tz(as.POSIXct(strptime('2017-11-20 23:00:00.051438000',
'%Y-%m-%d %H:%M:%OS', tz = 'GMT')),
tzone='Asia/Tokyo')
Теперь я могу использовать функцию myformat.POSIXct
от этого ответа округлить до ближайшей милисекунды:
myformat.POSIXct <- function(x, digits=0) {
x2 <- round(unclass(x), digits)
attributes(x2) <- attributes(x)
x <- as.POSIXlt(x2)
x$sec <- round(x$sec, digits) + 10^(-digits-1)
format.POSIXlt(x, paste("%Y-%m-%d %H:%M:%OS",digits,sep=""))
}
myformat.POSIXct(this_special_date, digits=3)
возврат: "2017-11-21 08:00:00.051". Но как округлить время POSIXct до следующих миллисекунд? - в приведенном выше случае это будет "2017-11-21 08:00:00.052".
2 ответа
Решение
myceil.POSIXct <- function(x, digits=0) {
x1 <- as.numeric(x)
x1 <- ceiling(x1 * 10 ^ digits) / 10 ^ digits
attributes(x1) <- attributes(x)
x1
}
myceil.POSIXct(this_special_date, 3)
#[1] "2017-11-21 08:00:00.052 JST"
Не могли бы вы добавить 00.0005 ко всем значениям? Это гарантирует, что они всегда округляются относительно начального значения.
myformat.POSIXct <- function(x, digits=0) {
x2 <- round(unclass(x + (5*10^(-digits-1))), digits)
attributes(x2) <- attributes(x)
x <- as.POSIXlt(x2)
x$sec <- round(x$sec, digits) + 10^(-digits-1)
format.POSIXlt(x, paste("%Y-%m-%d %H:%M:%OS",digits,sep=""))
}
myformat.POSIXct(this_special_date, digits=3)