You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Notice that data.table::as.ITime(c('xxx', '10:43')) return NA, NA below which should be a bug.
data.table::as.ITime(c('10:43'))
[1] "10:43:00"
data.table::as.ITime(c('xxx', '10:43'))
[1] NA NA
There were 11 warnings (use warnings() to see them)
data.table::as.ITime(c('xxx', '10:43:01'))
[1] NA "10:43:01"
warnings()
Warning messages:
1: In [<-.POSIXlt(*tmp*, w[nna], value = structure(list( ... :
number of items to replace is not a multiple of replacement length
2: In [<-.POSIXlt(*tmp*, w[nna], value = structure(list( ... :
number of items to replace is not a multiple of replacement length
3: In [<-.POSIXlt(*tmp*, w[nna], value = structure(list( ... :
number of items to replace is not a multiple of replacement length
4: In [<-.POSIXlt(*tmp*, w[nna], value = structure(list( ... :
The text was updated successfully, but these errors were encountered:
Notice that data.table::as.ITime(c('xxx', '10:43')) return NA, NA below which should be a bug.
The text was updated successfully, but these errors were encountered: