有没有办法将格式为"HH:MM:SS AM/PM"的字符串转换为R中的24小时格式。
我试过HMS,但没用。
当我使用strptime时,它也会给我日期,这是我不想要的。
strptime(c("1:00:29 AM","1:00:29 PM"), "%I:%M:%S %p")
#output "2016-08-07 01:00:29 IST" "2016-08-07 13:00:29 IST"
也许我们可以使用format
time <- format(strptime(c("1:00:29 AM","1:00:29 PM"), "%I:%M:%S %p"), "%H:%M:%S")
time
#[1] "01:00:29" "13:00:29"
可以使用chron
中的?times
将其转换为times
类
library(chron)
times(time)
#[1] 01:00:29 13:00:29