hms函数消除NA

时间:2019-03-26 19:25:29

标签: r type-conversion lubridate posixct

继续收到此警告消息:

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

1 个答案:

答案 0 :(得分:1)

combined$start中没有任何时间,因此请尝试仅使用hm。

combined$start <- hm(combined$start)

我还注意到创建combined$start时没有逗号,因此请尝试将行更改为:

combined$start<- c("8:45", "12:10", "16:00")