使用 hms() 将 .csv 中的 HH:MM:SS 字符串转换为 R 中的 HH:MM:SS 向量
Converting HH:MM:SS string in .csv to HH:MM:SS vector in R using hms()
如何将 hh:mm:ss 格式的时间字符串( 无日期 )从 .csv 转换为 R 中相同格式的时间向量hms()
包?
我尝试了以下方法:time <- as_hms(file$time)
但我收到以下错误:
Error: Lossy cast from <character> to <hms> at position(s) 140364, 140365, 140366, 140367, 140368, ... (and 2455 more)
.
数据在 .csv 文件中保存为 hh:mm:ss 时间。
使用parse_hms()
而不是as_hms()
如何将 hh:mm:ss 格式的时间字符串( 无日期 )从 .csv 转换为 R 中相同格式的时间向量hms()
包?
我尝试了以下方法:time <- as_hms(file$time)
但我收到以下错误:
Error: Lossy cast from <character> to <hms> at position(s) 140364, 140365, 140366, 140367, 140368, ... (and 2455 more)
.
数据在 .csv 文件中保存为 hh:mm:ss 时间。
使用parse_hms()
而不是as_hms()