如何在 R 中用分形秒数转换时间格式

How to convert time format with fractal seconds in R

我想知道如何转换使用分形秒的时间格式。我有一个时间向量,看起来像屏幕截图 1 中显示的那个(格式类似于 "HHMMSSZZZ")。数据是整数类型。任务是将其转换为正常时间格式。

我们可以使用strptime

strptime(as.character(df1$TIME), format = "%I%M%OS")

数据

df1 <- data.frame(TIME = c(101323258, 101323258, 101323258, 101323259,
           101323260, 101323260, 101323261))