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
library(hms)
library(vctrs)
time<- hms(56, 34, 12)
str(time)
#> 'hms' num 12:34:56#> - attr(*, "units")= chr "secs"# losing the `hms` class, and therefore the printingtime2<- vec_c(time, time)
str(time2)
#> 'difftime' num [1:2] 45296 45296#> - attr(*, "units")= chr "secs"
I realize hms is just disguise on top of difftime. Should there be perhaps a vec_restore.difftime, or would we need to add support for hms in the hms package ?
The text was updated successfully, but these errors were encountered:
I realize
hms
is just disguise on top ofdifftime
. Should there be perhaps avec_restore.difftime
, or would we need to add support forhms
in thehms
package ?The text was updated successfully, but these errors were encountered: