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
> res <- as_id_tbl(
+ data.table(id = 1, start = hours(1), end = hours(2)),
+ id_vars = "id"
+ )
> as_win_tbl(res, index_var = "start", dur_var = "end", by_ref = TRUE)
Error in `assert_that()`:
! x is not compatible with an interval of Inf hours
Run `rlang::last_trace()` to see where the error occurred.
Warning message:
In min(numeric(0), na.rm = TRUE) :
no non-missing arguments to min; returning Inf
It seems that the error comes from L378 in tbl-class.R, in which interval(index_col(res)) is called, which throws this error.
The text was updated successfully, but these errors were encountered:
(@nbenn)
Below is a minimal reproducible example:
It seems that the error comes from L378 in
tbl-class.R
, in whichinterval(index_col(res))
is called, which throws this error.The text was updated successfully, but these errors were encountered: