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
This would give much better error messages when the user assumes that these functions work for lazy tables. Currently, the error messages do not help much:
library(tidyr)
library(dtplyr)
df<- tibble(
x=1:3,
y=list(NULL, 1:3, 4:5)
) %>%
lazy_dt()
df %>%
hoist(y)
#> Error: object 'y' not founddf %>%
unnest_longer(y)
#> Error: `x` must be a vector, not a <dtplyr_step_first/dtplyr_step> object.
This would give much better error messages when the user assumes that these functions work for lazy tables. Currently, the error messages do not help much:
Created on 2021-11-16 by the reprex package (v2.0.1)
Alternatively, these functions could be made generic (see #1071).
The text was updated successfully, but these errors were encountered: