继续收到此警告消息:
Warning message: In .parse_hms(..., order = "HMS", quiet = quiet) : Some strings failed to parse, or all strings are NAs
该函数将我的字符向量中的所有数据替换为NA
。
我尝试通过hms()
包运行lubridate
函数,然后再次使用POSIXct
combined$start<- c("8:45" "12:10" "16:00")
combined$start <- as.character(combined$start)
combined$start <- hms(combined$start)
我希望将combined$start
中的字符转换为hms
,但是当我尝试运行最后一行代码时,我只会得到NA
。
答案 0 :(得分:1)
combined$start
中没有任何时间,因此请尝试仅使用hm。
combined$start <- hm(combined$start)
我还注意到创建combined$start
时没有逗号,因此请尝试将行更改为:
combined$start<- c("8:45", "12:10", "16:00")