hms 函数踢出 NA
hms function kicking out NAs
不断收到此警告消息:
Warning message:
In .parse_hms(..., order = "HMS", quiet = quiet) :
Some strings failed to parse, or all strings are NAs
并且该函数将我的字符向量中的所有数据替换为 NA
。
我已经通过 lubridate
包尝试 运行ning hms()
功能,并使用 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。
您在 combined$start
中没有任何秒数,所以请尝试使用 hm。
combined$start <- hm(combined$start)
我还注意到您在创建 combined$start
时没有逗号,因此尝试将行更改为:
combined$start<- c("8:45", "12:10", "16:00")
不断收到此警告消息:
Warning message: In .parse_hms(..., order = "HMS", quiet = quiet) : Some strings failed to parse, or all strings are NAs
并且该函数将我的字符向量中的所有数据替换为 NA
。
我已经通过 lubridate
包尝试 运行ning hms()
功能,并使用 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。
您在 combined$start
中没有任何秒数,所以请尝试使用 hm。
combined$start <- hm(combined$start)
我还注意到您在创建 combined$start
时没有逗号,因此尝试将行更改为:
combined$start<- c("8:45", "12:10", "16:00")